Commit ef98684b authored by Matthias Vallentin's avatar Matthias Vallentin

Fix up streambuf unit test

parent c5a56456
...@@ -48,7 +48,7 @@ CAF_TEST(signed_arraybuf) { ...@@ -48,7 +48,7 @@ CAF_TEST(signed_arraybuf) {
auto c = ab.sgetc(); auto c = ab.sgetc();
CAF_CHECK_EQUAL(c, charbuf::traits_type::eof()); CAF_CHECK_EQUAL(c, charbuf::traits_type::eof());
// Reset the stream and write into it. // Reset the stream and write into it.
ab.setbuf(&data[0], static_cast<std::streamsize>(data.size())); ab.pubsetbuf(&data[0], static_cast<std::streamsize>(data.size()));
CAF_CHECK_EQUAL(static_cast<size_t>(ab.in_avail()), data.size()); CAF_CHECK_EQUAL(static_cast<size_t>(ab.in_avail()), data.size());
auto put = ab.sputn("One", 3); auto put = ab.sputn("One", 3);
CAF_CHECK_EQUAL(put, 3); CAF_CHECK_EQUAL(put, 3);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment