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 4290915 commit ccea7dbCopy full SHA for ccea7db
src/test_lib_json/main.cpp
@@ -3632,12 +3632,12 @@ 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";
+ // clang-format off
+ JSONTEST_ASSERT(td.ok == ok) <<
+ "line:" << td.line << "\n " <<
+ "expected: {ok:" << td.ok << ", in:\'" << td.in << "\'}\n " <<
+ "actual: {ok:" << ok << "}\n";
+ // clang-format on
3641
}
3642
3643
{
0 commit comments