Skip to content

Commit a3a85b7

Browse files
committed
Fix clang format issue
1 parent a343196 commit a3a85b7

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/test_lib_json/main.cpp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3632,12 +3632,9 @@ 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) << "line:" << td.line << "\n"
3636-
<< " expected: {"
3637-
<< "ok:" << td.ok << ", in:\'" << td.in << "\'"
3638-
<< "}\n"
3639-
<< " actual: {"
3640-
<< "ok:" << ok << "}\n";
3635+
JSONTEST_ASSERT(td.ok == ok)
3636+
<< "line:" << td.line << "\n expected: {ok:" << td.ok << ", in:\'"
3637+
<< td.in << "\'}\n actual: {ok:" << ok << "}\n";
36413638
}
36423639

36433640
{

0 commit comments

Comments
 (0)