From 47550051e83c48a8d86d59f143a4041706c26efd Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 10 Sep 2022 17:27:14 +0200 Subject: [PATCH] :rotating_light: fix Clang-Tidy warnings --- tests/src/unit-ubjson.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/src/unit-ubjson.cpp b/tests/src/unit-ubjson.cpp index fb6b403ee..fd67f1a67 100644 --- a/tests/src/unit-ubjson.cpp +++ b/tests/src/unit-ubjson.cpp @@ -2072,9 +2072,9 @@ TEST_CASE("Universal Binary JSON Specification Examples 1") 'S', 'i', 3, 'b', 'a', 'z', ']' }; std::vector const v2 = {'[', 'S', 'i', 3, 'f', 'o', 'o', 'N', - 'S', 'i', 3, 'b', 'a', 'r', 'N', 'N', 'N', - 'S', 'i', 3, 'b', 'a', 'z', 'N', 'N', ']' - }; + 'S', 'i', 3, 'b', 'a', 'r', 'N', 'N', 'N', + 'S', 'i', 3, 'b', 'a', 'z', 'N', 'N', ']' + }; CHECK(json::to_ubjson(j) == v); CHECK(json::from_ubjson(v) == j); CHECK(json::from_ubjson(v2) == j);