Skip to content

Commit

Permalink
Fix typo on "Test your API" guide page
Browse files Browse the repository at this point in the history
  • Loading branch information
alamirault committed May 4, 2024
1 parent 04474e4 commit 3e216d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/test-your-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function testGetCollection(): void
// We provide assertions based on your resource's JSON Schema to save time asserting that the data
// matches an expected format, for example here with a collection.
$this->assertMatchesResourceCollectionJsonSchema(Book::class);
// PHPUnit default assertios are also available.
// PHPUnit default assertions are also available.
$this->assertCount(0, $response->toArray()['hydra:member']);
}
}
Expand Down

0 comments on commit 3e216d8

Please sign in to comment.