fixes bug in example - undeclared identifier

j was not declared in `SECTION("two")`
This commit is contained in:
kotaiadam 2020-09-11 14:05:10 +02:00 committed by Martin Hořeňovský
parent a2e5ce2418
commit 2fc83e7e9c
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ TEST_CASE("Generators") {
} }
SECTION("two") { SECTION("two") {
auto k = GENERATE(4, 5, 6); auto k = GENERATE(4, 5, 6);
REQUIRE(j != k); REQUIRE(i != k);
} }
} }
``` ```