Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyBel committed Jan 31, 2023
1 parent 25abbf6 commit 94aa823
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ These conditions are used to determine when to end the test execution. To determ
class SimpleTest extends BaseInvariantTest
{
#[FinishCount(10)]
public function testDivision(#[IntegerGenerator(50, 101)] int $x)
public function testSimple(#[IntegerGenerator(50, 101)] int $x)
{
// fail when $x=101
$this->assertTrue($x < 100);
Expand Down
2 changes: 1 addition & 1 deletion invariants/examples/SimpleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class SimpleTest extends BaseInvariantTest
{
#[FinishCount(10)]
public function testDivision(#[IntegerGenerator(99, 101)] int $x)
public function testSimple(#[IntegerGenerator(99, 101)] int $x)
{
// fail when $x=101
$this->assertTrue($x < 100);
Expand Down

0 comments on commit 94aa823

Please sign in to comment.