Skip to content

Commit 49aeae2

Browse files
committed
Correct typo in unit test comments
1 parent c1c2bdf commit 49aeae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/physical_layer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ SCENARIO("Sequences of bits can be converted to/from sequences of pits/lands") {
3636
const std::size_t LENGTH = 8;
3737
// bits are stuffed into uints here for compactness
3838
auto bits_pits_combination = GENERATE(
39-
// previous-pit pits bits
39+
// previous-pit bits pits
4040
std::tuple<Pit, std::uint8_t, std::uint8_t>(Pit::LAND, 0b01101001, 0b01001110),
4141
std::tuple<Pit, std::uint8_t, std::uint8_t>(Pit::PIT , 0b01101001, 0b10110001),
4242
std::tuple<Pit, std::uint8_t, std::uint8_t>(Pit::LAND, 0b11101010, 0b10110011),

0 commit comments

Comments
 (0)