Use value_type in CDataStream where possible

Also, simplify unit tests with the CDataStream::str method.
This commit is contained in:
MarcoFalke 2021-11-04 09:17:14 +01:00
parent 94db963de5
commit fabe18d0b3
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
2 changed files with 9 additions and 9 deletions

View file

@ -172,7 +172,7 @@ BOOST_AUTO_TEST_CASE(streams_serializedata_xor)
ds.Xor(key);
BOOST_CHECK_EQUAL(
std::string(expected_xor.begin(), expected_xor.end()),
std::string(ds.begin(), ds.end()));
ds.str());
in.push_back('\x0f');
in.push_back('\xf0');
@ -189,7 +189,7 @@ BOOST_AUTO_TEST_CASE(streams_serializedata_xor)
ds.Xor(key);
BOOST_CHECK_EQUAL(
std::string(expected_xor.begin(), expected_xor.end()),
std::string(ds.begin(), ds.end()));
ds.str());
// Multi character key
@ -210,7 +210,7 @@ BOOST_AUTO_TEST_CASE(streams_serializedata_xor)
ds.Xor(key);
BOOST_CHECK_EQUAL(
std::string(expected_xor.begin(), expected_xor.end()),
std::string(ds.begin(), ds.end()));
ds.str());
}
BOOST_AUTO_TEST_CASE(streams_buffered_file)