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 b0214ff862
commit 9e172c707e
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
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);
} }
} }
``` ```