We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a343196 commit a3a85b7Copy full SHA for a3a85b7
src/test_lib_json/main.cpp
@@ -3632,12 +3632,9 @@ JSONTEST_FIXTURE_LOCAL(CharReaderAllowSpecialFloatsTest, issue209) {
3632
for (const auto& td : test_data) {
3633
bool ok = reader->parse(&*td.in.begin(), &*td.in.begin() + td.in.size(),
3634
&root, &errs);
3635
- JSONTEST_ASSERT(td.ok == ok) << "line:" << td.line << "\n"
3636
- << " expected: {"
3637
- << "ok:" << td.ok << ", in:\'" << td.in << "\'"
3638
- << "}\n"
3639
- << " actual: {"
3640
- << "ok:" << ok << "}\n";
+ JSONTEST_ASSERT(td.ok == ok)
+ << "line:" << td.line << "\n expected: {ok:" << td.ok << ", in:\'"
+ << td.in << "\'}\n actual: {ok:" << ok << "}\n";
3641
}
3642
3643
{
0 commit comments