Skip to content

Commit 6ae6ac9

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e465120 commit 6ae6ac9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/auto/utils/bytearray/tst_bytearray.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ TEST_SUITE("ByteArray")
8383
{
8484
// GIVEN
8585
const ByteArray b(4, 2);
86-
const ByteArray b2(b); //NOLINT(performance-unnecessary-copy-initialization)
86+
const ByteArray b2(b); // NOLINT(performance-unnecessary-copy-initialization)
8787

8888
// THEN
8989
CHECK(b == b2);
@@ -104,7 +104,7 @@ TEST_SUITE("ByteArray")
104104
{
105105
// GIVEN
106106
const ByteArray b(4, 2);
107-
const ByteArray b2 = b; //NOLINT(performance-unnecessary-copy-initialization)
107+
const ByteArray b2 = b; // NOLINT(performance-unnecessary-copy-initialization)
108108

109109
// THEN
110110
CHECK(b == b2);

0 commit comments

Comments
 (0)