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

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