Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Sep 25, 2020
1 parent 47eb150 commit 5596e04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/StringsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -546,8 +546,8 @@
});

test('test isEqual() method', function (): void {
$this->assertTrue(Strings::create('fòôbàřs')->isEquals('fòôbàřs'));
$this->assertFalse(Strings::create('fòôbàřs')->isEquals('fòô'));
$this->assertTrue(Strings::create('fòôbàřs')->isEqual('fòôbàřs'));
$this->assertFalse(Strings::create('fòôbàřs')->isEqual('fòô'));
});

test('test repeat() method', function (): void {
Expand Down

0 comments on commit 5596e04

Please sign in to comment.