Skip to content

Commit

Permalink
More simple mistakes 😮‍💨.
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling committed Feb 9, 2025
1 parent 02cfb9d commit c785d18
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_integration_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,7 @@ async def test_sql_explain_postgres_union_query(self):
"""
Confirm select queries that start with a parenthesis can be explained.
"""

self.client.get("/async_execute_union_sql/")
await self.async_client.get("/async_execute_union_sql/")
request_ids = list(get_store().request_ids())
request_id = request_ids[-1]
toolbar = DebugToolbar.fetch(request_id, SQLPanel.panel_id)
Expand All @@ -405,7 +404,7 @@ async def test_sql_explain_postgres_union_query(self):
connection.vendor == "postgresql", "Test valid only on PostgreSQL"
)
async def test_sql_explain_postgres_json_field(self):
self.client.get("/async_execute_json_sql/")
await self.async_client.get("/async_execute_json_sql/")
request_ids = list(get_store().request_ids())
request_id = request_ids[-1]
toolbar = DebugToolbar.fetch(request_id, SQLPanel.panel_id)
Expand Down

0 comments on commit c785d18

Please sign in to comment.