diff --git a/mocking.md b/mocking.md index 55aeca9459..2f1eef67ce 100644 --- a/mocking.md +++ b/mocking.md @@ -165,7 +165,7 @@ If you would like to [spy](http://docs.mockery.io/en/latest/reference/spies.html use Illuminate\Support\Facades\Cache; -test('values are be stored in cache', function () { +test('values are stored in cache', function () { Cache::spy(); $response = $this->get('/'); @@ -179,7 +179,7 @@ test('values are be stored in cache', function () { ```php tab=PHPUnit use Illuminate\Support\Facades\Cache; -public function test_values_are_be_stored_in_cache(): void +public function test_values_are_stored_in_cache(): void { Cache::spy();