Clang format updates (#1560)
* add comment space directive
* Fix clang format issue
* wrap in clang-format off
diff --git a/src/test_lib_json/main.cpp b/src/test_lib_json/main.cpp
index a6f21c4..1ef33bb 100644
--- a/src/test_lib_json/main.cpp
+++ b/src/test_lib_json/main.cpp
@@ -3632,12 +3632,12 @@
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
}
{