]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typo in `docs/tutorial/fastapi/tests.md` (#113)
authorFeanil Patel <feanil@tcril.org>
Sat, 27 Aug 2022 20:33:41 +0000 (16:33 -0400)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 20:33:41 +0000 (20:33 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/tutorial/fastapi/tests.md

index eaf3ef380f1381c00f760ca773a81cd9641b9b5c..15ebc843283874b00c2c09023d2eec7a718243f0 100644 (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