diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index fe5a70f1..06190d84 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -6,7 +6,7 @@ ✓ not property calls PASS Tests\Expect\toBe - ✓ expect true → toBeTrue → and false → toBeFalse + ✓ expect true → toBeTrue → and false → toBeFalse ✓ strict comparisons ✓ failures ✓ not failures @@ -295,8 +295,8 @@ ✓ it has bar PASS Tests\Features\PendingHigherOrderTests - ✓ get 'foo' → get 'bar' → expect true → toBeTrue - ✓ get 'foo' → expect true → toBeTrue + ✓ get 'foo' → get 'bar' → expect true → toBeTrue + ✓ get 'foo' → expect true → toBeTrue WARN Tests\Features\Skip ✓ it do not skips @@ -392,3 +392,4 @@ ✓ depends run test only once Tests: 7 skipped, 231 passed + \ No newline at end of file diff --git a/tests/Unit/Datasets.php b/tests/Unit/Datasets.php index 2abbc582..88978e41 100644 --- a/tests/Unit/Datasets.php +++ b/tests/Unit/Datasets.php @@ -8,6 +8,6 @@ it('show the names of named datasets in their description', function () { 'two' => [[2]], ])); - $this->assertSame('test description with data set "one" (1)', $descriptions[0]); - $this->assertSame('test description with data set "two" (array(2))', $descriptions[1]); + expect($descriptions[0])->toBe('test description with data set "one" (1)'); + expect($descriptions[1])->toBe('test description with data set "two" (array(2))'); });