fixes bug in example - undeclared identifier

j was not declared in `SECTION("two")`
This commit is contained in:
kotaiadam
2020-09-12 11:40:30 +02:00
committed by Martin Hořeňovský
parent a2e5ce2418
commit 2fc83e7e9c
+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);
}
}
```