✏ Fix typo in docs/tutorial/fastapi/tests.md (#113)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Feanil Patel 2022-08-27 16:33:41 -04:00 committed by GitHub
parent f602794f07
commit 63dd44dc86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -311,7 +311,7 @@ Let's add some more tests:
That's why we add these two extra tests here.
Now, any additional test functions can be as **simple** as the first one, they just have to **declate the `client` parameter** to get the `TestClient` **fixture** with all the database stuff setup. Nice! 😎
Now, any additional test functions can be as **simple** as the first one, they just have to **declare the `client` parameter** to get the `TestClient` **fixture** with all the database stuff setup. Nice! 😎
## Why Two Fixtures