Skip to content

Commit

Permalink
one more typo in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Aug 8, 2024
1 parent cd27b56 commit 1fde5a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piccolo/testing/test_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async def test_band_response(self):
await band.save()
# Using an API testing client, like httpx:
response = client.get(f"/bands/{band.id}/")
response = await client.get(f"/bands/{band.id}/")
self.assertEqual(response.status_code, 200)
We add a ``Band`` to the database, but any subsequent tests won't see it,
Expand Down

0 comments on commit 1fde5a7

Please sign in to comment.