Merge pull request #22 from pgrimaud/master

Fix typos
This commit is contained in:
Nuno Maduro
2020-05-24 20:03:20 +02:00
committed by GitHub
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 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

View File

@ -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);