Fix clang format issue

This commit is contained in:
Jordan Bayles 2024-09-09 17:02:00 -07:00
parent a343196a31
commit a3a85b7adb

View File

@ -3632,12 +3632,9 @@ 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";
JSONTEST_ASSERT(td.ok == ok)
<< "line:" << td.line << "\n expected: {ok:" << td.ok << ", in:\'"
<< td.in << "\'}\n actual: {ok:" << ok << "}\n";
}
{