]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typo in `docs/tutorial/fastapi/tests.md` (#265)
authorJack Homan <homan.jack@gmail.com>
Sat, 27 Aug 2022 21:04:38 +0000 (17:04 -0400)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 21:04:38 +0000 (23:04 +0200)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/tutorial/fastapi/tests.md

index 15ebc843283874b00c2c09023d2eec7a718243f0..db71121f94208361c05eadaa6f1ce070e5bf5789 100644 (file)
@@ -82,7 +82,7 @@ But now we need to deal with a bit of logistics and details we are not paying at
 
 This test looks fine, but there's a problem.
 
-If we run it, it will use the same **production database** that we are using to store our very important **heroes**, and we will end up adding adding unnecesary data to it, or even worse, in future tests we could end up removing production data.
+If we run it, it will use the same **production database** that we are using to store our very important **heroes**, and we will end up adding unnecesary data to it, or even worse, in future tests we could end up removing production data.
 
 So, we should use an independent **testing database**, just for the tests.