Skip to content

Commit

Permalink
fix test 50-loops/25-edge-cases (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhabinka authored and mokevnin committed Jul 30, 2019
1 parent 0605863 commit d1bc48e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/50-loops/25-edge-cases/Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@
Assert::that($result3)->false();
$result4 = isArgumentsForSubstrCorrect($str, 11, 1); // => false
Assert::that($result4)->false();
$result5 = isArgumentsForSubstrCorrect($str, 3, 3); // => true
Assert::that($result5)->true();
$result5 = isArgumentsForSubstrCorrect($str, 11, 0); // => false
Assert::that($result5)->false();
$result6 = isArgumentsForSubstrCorrect($str, 3, 3); // => true
Assert::that($result6)->true();

0 comments on commit d1bc48e

Please sign in to comment.