Skip to content

Commit

Permalink
wrap in clang-format off
Browse files Browse the repository at this point in the history
  • Loading branch information
baylesj committed Sep 10, 2024
1 parent a3a85b7 commit 9c0b99c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/test_lib_json/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3632,9 +3632,12 @@ JSONTEST_FIXTURE_LOCAL(CharReaderAllowSpecialFloatsTest, issue209) {
for (const auto& td : test_data) {
bool ok = reader->parse(&*td.in.begin(), &*td.in.begin() + td.in.size(),
&root, &errs);
JSONTEST_ASSERT(td.ok == ok)
<< "line:" << td.line << "\n expected: {ok:" << td.ok << ", in:\'"
<< td.in << "\'}\n actual: {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
}

{
Expand Down

0 comments on commit 9c0b99c

Please sign in to comment.