Skip to content

Commit ff804bf

Browse files
remove space in empty lines
1 parent cd0fa76 commit ff804bf

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tests/test_private_crc.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
// This software is distributed under the terms of the MIT License.
22
// Copyright (c) 2016-2020 OpenCyphal Development Team.
33
// Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4-
4+
55
#include "exposed.hpp"
66
#include "catch.hpp"
7-
7+
88
TEST_CASE("TransferCRC")
99
{
1010
using exposed::crcAdd;
1111
using exposed::crcValue;
1212
std::uint32_t crc = 0xFFFFFFFFU;
13-
13+
1414
crc = crcAdd(crc, 1, "1");
1515
REQUIRE(0x90F599E3U == crcValue(crc));
1616
crc = crcAdd(crc, 1, "2");
1717
REQUIRE(0x7355C460U == crcValue(crc));
1818
crc = crcAdd(crc, 1, "3");
1919
REQUIRE(0x107B2FB2U == crcValue(crc));
20-
20+
2121
crc = crcAdd(crc, 6, "456789");
2222
REQUIRE(0xE3069283U == crcValue(crc));
2323
}
24-

0 commit comments

Comments
 (0)