diff --git a/mutation-testing.md b/mutation-testing.md index c0a614e..edc420e 100644 --- a/mutation-testing.md +++ b/mutation-testing.md @@ -108,7 +108,7 @@ it('list todos', function () { // this fails because the mutation changed the return value, proving that the test is working and testing the return value... $this->getJson('/todos')->assertStatus(200)->assertJsonContains([ - ['name' => 'Buy milk'], + ['name' => 'Buy milk'], ]); }); ``` @@ -130,7 +130,7 @@ class TodoController it('list todos', function () { Todo::factory()->create(['name' => 'Buy milk']); - // this test still passes even though the return value was changed by the mutation... + // this test still passes even though the return value was changed by the mutation... $this->getJson('/todos')->assertStatus(200); }); ``` diff --git a/upgrade-guide.md b/upgrade-guide.md index e302c2e..7ec543d 100644 --- a/upgrade-guide.md +++ b/upgrade-guide.md @@ -55,7 +55,7 @@ The `toHaveMethod` and `toHaveMethods` expectations were replaced by the `toHave ### Pest 2 Deprecations -During Pest 2 release, some features were deprecated and will be removed in Pest 3. Here are the changes you should be aware of: +During Pest 2 release, some features were deprecated and are now removed in Pest 3. Here are the changes you should be aware of: #### `tap()` Method