Fix typos

This commit is contained in:
Pierre Grimaud
2020-05-24 12:37:33 +02:00
parent 340c7ca04e
commit d0d34c7872
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@
s it skips with message → skipped because bar s it skips with message → skipped because bar
s it skips with truthy closure condition s it skips with truthy closure condition
✓ it do not skips with falsy 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 PASS Tests\Features\Test
✓ a test ✓ a test

View File

@ -24,6 +24,6 @@ it('do not skips with falsy closure condition')
->skip(function () { return false; }) ->skip(function () { return false; })
->assertTrue(true); ->assertTrue(true);
it('skips with condition and messsage') it('skips with condition and message')
->skip(true, 'skipped because foo') ->skip(true, 'skipped because foo')
->assertTrue(false); ->assertTrue(false);