🔨 fixed compilation
This commit is contained in:
parent
9a576fe1d9
commit
52adf3fd5b
1 changed files with 2 additions and 2 deletions
|
@ -734,13 +734,13 @@ 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(stream.tellg() == 28);
|
CHECK(static_cast<int>(stream.tellg()) == 28);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i == 1)
|
if (i == 1)
|
||||||
{
|
{
|
||||||
CHECK(val == json({{"three", 3}}));
|
CHECK(val == json({{"three", 3}}));
|
||||||
CHECK(stream.tellg() == 44);
|
CHECK(static_cast<int>(stream.tellg()) == 44);
|
||||||
}
|
}
|
||||||
|
|
||||||
++i;
|
++i;
|
||||||
|
|
Loading…
Reference in a new issue