From 4e9cffcf4efbeef9ab929a814c44eb93cb946332 Mon Sep 17 00:00:00 2001 From: Alex Cockrean <84676155+ABenC377@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:32:37 +0000 Subject: [PATCH] Undoing unnecessary clang format changes --- test/unit/aarch64/AuxiliaryFunctionsTest.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/unit/aarch64/AuxiliaryFunctionsTest.cc b/test/unit/aarch64/AuxiliaryFunctionsTest.cc index 07c7f67478..f319b55dbb 100644 --- a/test/unit/aarch64/AuxiliaryFunctionsTest.cc +++ b/test/unit/aarch64/AuxiliaryFunctionsTest.cc @@ -72,9 +72,9 @@ TEST(AArch64AuxiliaryFunctionTest, BitfieldManipulate) { "Attempted to use a rotate amount of 16 in bitfieldManipulate which is " "greater than or equal to the data type size of 16b in use"); ASSERT_DEATH({ bitfieldManipulate(0, 0, 0, 16, false); }, - "Attempted to use a source bit position value of 16 in " - "bitfieldManipulate which is greater than or equal to the data " - "type size of 16b in use"); + "Attempted to use a source bit position value of 16 in " + "bitfieldManipulate which is greater than or equal to the data " + "type size of 16b in use"); // uint32 EXPECT_EQ(bitfieldManipulate(0x0000FFFF, 0xFFFF0000, 0, 0, false), @@ -105,9 +105,9 @@ TEST(AArch64AuxiliaryFunctionTest, BitfieldManipulate) { "Attempted to use a rotate amount of 32 in bitfieldManipulate which is " "greater than or equal to the data type size of 32b in use"); ASSERT_DEATH({ bitfieldManipulate(0, 0, 0, 32, false); }, - "Attempted to use a source bit position value of 32 in " - "bitfieldManipulate which is greater than or equal to the data " - "type size of 32b in use"); + "Attempted to use a source bit position value of 32 in " + "bitfieldManipulate which is greater than or equal to the data " + "type size of 32b in use"); // uint64 EXPECT_EQ(bitfieldManipulate(0x00000000FFFFFFFF, 0xFFFFFFFF00000000, @@ -148,9 +148,9 @@ TEST(AArch64AuxiliaryFunctionTest, BitfieldManipulate) { "Attempted to use a rotate amount of 64 in bitfieldManipulate which is " "greater than or equal to the data type size of 64b in use"); ASSERT_DEATH({ bitfieldManipulate(0, 0, 0, 64, false); }, - "Attempted to use a source bit position value of 64 in " - "bitfieldManipulate which is greater than or equal to the data " - "type size of 64b in use"); + "Attempted to use a source bit position value of 64 in " + "bitfieldManipulate which is greater than or equal to the data " + "type size of 64b in use"); } /** `conditionHolds` Tests */