We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c2bdf commit 49aeae2Copy full SHA for 49aeae2
tests/physical_layer.cpp
@@ -36,7 +36,7 @@ SCENARIO("Sequences of bits can be converted to/from sequences of pits/lands") {
36
const std::size_t LENGTH = 8;
37
// bits are stuffed into uints here for compactness
38
auto bits_pits_combination = GENERATE(
39
- // previous-pit pits bits
+ // previous-pit bits pits
40
std::tuple<Pit, std::uint8_t, std::uint8_t>(Pit::LAND, 0b01101001, 0b01001110),
41
std::tuple<Pit, std::uint8_t, std::uint8_t>(Pit::PIT , 0b01101001, 0b10110001),
42
std::tuple<Pit, std::uint8_t, std::uint8_t>(Pit::LAND, 0b11101010, 0b10110011),
0 commit comments