From d0d34c78727f545c8259bd99816eb211834096f3 Mon Sep 17 00:00:00 2001 From: Pierre Grimaud Date: Sun, 24 May 2020 12:37:33 +0200 Subject: [PATCH] Fix typos --- tests/.snapshots/success.txt | 2 +- tests/Features/Skip.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);