Skip to content

Commit 9c0b99c

Browse files
committed
wrap in clang-format off
1 parent a3a85b7 commit 9c0b99c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/test_lib_json/main.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3632,9 +3632,12 @@ JSONTEST_FIXTURE_LOCAL(CharReaderAllowSpecialFloatsTest, issue209) {
36323632
for (const auto& td : test_data) {
36333633
bool ok = reader->parse(&*td.in.begin(), &*td.in.begin() + td.in.size(),
36343634
&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";
3635+
// clang-format off
3636+
JSONTEST_ASSERT(td.ok == ok) <<
3637+
"line:" << td.line << "\n " <<
3638+
"expected: {ok:" << td.ok << ", in:\'" << td.in << "\'}\n " <<
3639+
"actual: {ok:" << ok << "}\n";
3640+
// clang-format on
36383641
}
36393642

36403643
{

0 commit comments

Comments
 (0)