Merge 61d3280c3a into merged_master (Bitcoin PR bitcoin/bitcoin#29907)

This commit is contained in:
ivanlele 2026-02-19 15:22:31 +00:00
commit 4c4ef7dace
No known key found for this signature in database

View file

@ -143,8 +143,8 @@ BOOST_AUTO_TEST_CASE(streams_vector_reader)
BOOST_CHECK_EQUAL(reader.size(), 5U);
BOOST_CHECK(!reader.empty());
// Read a single byte as a signed char.
signed char b;
// Read a single byte as a int8_t.
int8_t b;
reader >> b;
BOOST_CHECK_EQUAL(b, -1);
BOOST_CHECK_EQUAL(reader.size(), 4U);