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 a3a85b7 commit 9c0b99cCopy full SHA for 9c0b99c
src/test_lib_json/main.cpp
@@ -3632,9 +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)
3636
- << "line:" << td.line << "\n expected: {ok:" << td.ok << ", in:\'"
3637
- << td.in << "\'}\n actual: {ok:" << ok << "}\n";
+ // clang-format off
+ JSONTEST_ASSERT(td.ok == ok) <<
+ "line:" << td.line << "\n " <<
3638
+ "expected: {ok:" << td.ok << ", in:\'" << td.in << "\'}\n " <<
3639
+ "actual: {ok:" << ok << "}\n";
3640
+ // clang-format on
3641
}
3642
3643
{
0 commit comments