From d864232b298082ee57b4a43234a28a07c279da41 Mon Sep 17 00:00:00 2001 From: Anthony Van Herrewege Date: Thu, 9 Sep 2021 15:51:22 +0200 Subject: [PATCH] Make style consistent with rest of code. --- test/src/unit-diagnostics.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/src/unit-diagnostics.cpp b/test/src/unit-diagnostics.cpp index a835dff32..df9c5a5f3 100644 --- a/test/src/unit-diagnostics.cpp +++ b/test/src/unit-diagnostics.cpp @@ -188,17 +188,17 @@ TEST_CASE("Better diagnostics") SECTION("Regression test for issue #3007 - Parent pointers properly set when using update()") { - json j = json::object(); + json j = json::object(); - { - json j2 = json::object(); - j2["one"] = 1; + { + json j2 = json::object(); + j2["one"] = 1; - j.update(j2); - } + j.update(j2); + } - for (auto const & kv : j) { - CHECK(kv.m_parent == &j); - } + for (auto const & kv : j) { + CHECK(kv.m_parent == &j); + } } }