From cef4dc0bb7f7922174f0a51f76c61c51cc71b207 Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 6 Jul 2021 16:38:52 +0200 Subject: [PATCH] Apply clang-format --- tests/tagvalue.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tagvalue.cpp b/tests/tagvalue.cpp index 5f879ea..6ec2931 100644 --- a/tests/tagvalue.cpp +++ b/tests/tagvalue.cpp @@ -202,8 +202,8 @@ void TagValueTests::testEqualityOperator() TagValue("\x31\0\x33\0", 4, TagTextEncoding::Utf16LittleEndian) != TagValue("\x31\0\x32\0", 4, TagTextEncoding::Utf16LittleEndian)); CPPUNIT_ASSERT_EQUAL_MESSAGE( "comparison of equal binary data"s, TagValue("\x31\0\x32\0", 4, TagDataType::Binary), TagValue("\x31\0\x32\0", 4, TagDataType::Binary)); - CPPUNIT_ASSERT_MESSAGE("comparison of different binary data"s, - TagValue("\x31\0\x33\0", 4, TagDataType::Binary) != TagValue("\x31\0\x32\0", 4, TagDataType::Binary)); + CPPUNIT_ASSERT_MESSAGE( + "comparison of different binary data"s, TagValue("\x31\0\x33\0", 4, TagDataType::Binary) != TagValue("\x31\0\x32\0", 4, TagDataType::Binary)); CPPUNIT_ASSERT_EQUAL_MESSAGE("different encodings are converted if neccassary"s, TagValue("\0\x31\0\x35", 4, TagTextEncoding::Utf16BigEndian), TagValue("15", 2, TagTextEncoding::Latin1)); CPPUNIT_ASSERT_EQUAL_MESSAGE(