fixes bug in example - undeclared identifier

j was not declared in `SECTION("two")`
This commit is contained in:
kotaiadam
2020-10-08 11:34:25 +02:00
committed by Martin Hořeňovský
parent b0214ff862
commit 9e172c707e
+1 -1
View File
@@ -51,7 +51,7 @@ TEST_CASE("Generators") {
}
SECTION("two") {
auto k = GENERATE(4, 5, 6);
REQUIRE(j != k);
REQUIRE(i != k);
}
}
```