diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index f7de268b..23b93305 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -70,7 +70,7 @@ s it skips with message → skipped because bar s it skips with truthy closure condition ✓ it do not skips with falsy closure condition - s it skips with condition and messsage → skipped because foo + s it skips with condition and message → skipped because foo PASS Tests\Features\Test ✓ a test diff --git a/tests/Features/Skip.php b/tests/Features/Skip.php index 99d6f0a8..b393346e 100644 --- a/tests/Features/Skip.php +++ b/tests/Features/Skip.php @@ -24,6 +24,6 @@ it('do not skips with falsy closure condition') ->skip(function () { return false; }) ->assertTrue(true); -it('skips with condition and messsage') +it('skips with condition and message') ->skip(true, 'skipped because foo') ->assertTrue(false);