Skip to content

Commit 28d0cac

Browse files
authored
fix: resolve merge conflict
1 parent c3b775f commit 28d0cac

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/quart/test_graphqlview.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,10 @@ async def test_async_schema(app, client):
744744
app,
745745
client,
746746
query="{a,b,c}",
747-
747+
)
748+
749+
assert response.status_code == 200
750+
result = await response.get_data(as_text=True)
748751
assert response_json(result) == {"data": {"a": "hey", "b": "hey2", "c": "hey3"}}
749752

750753
@pytest.mark.asyncio
@@ -758,7 +761,6 @@ async def test_custom_execution_context_class(app: Quart, client: TestClientProt
758761
method="POST",
759762
data=json_dump_kwarg(query="{test}"),
760763
headers=Headers({"Content-Type": "application/json"}),
761-
762764
)
763765

764766
assert response.status_code == 200

0 commit comments

Comments
 (0)