🔨 removed nonportable code

This commit is contained in:
Niels Lohmann 2017-06-12 19:02:08 +02:00
parent ac793e957f
commit afb959a083
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -734,13 +734,11 @@ TEST_CASE("regression tests")
if (i == 0) if (i == 0)
{ {
CHECK(val == json({{"one", 1}, {"two", 2}})); CHECK(val == json({{"one", 1}, {"two", 2}}));
CHECK(static_cast<int>(stream.tellg()) == 28);
} }
if (i == 1) if (i == 1)
{ {
CHECK(val == json({{"three", 3}})); CHECK(val == json({{"three", 3}}));
CHECK(static_cast<int>(stream.tellg()) == 44);
} }
++i; ++i;