Skip to content

Commit cca377d

Browse files
authored
Merge pull request #17 from ChrisZhangProdigy/bug/fix-black-flake8-conflict
Bug/fix black flake8 conflict
2 parents 6f95f23 + 3d2a943 commit cca377d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_graphql_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def test_execute_query_with_headers(self, post_mock):
8585
"""Sends a graphql POST request with headers."""
8686
client = GraphqlClient(
8787
endpoint="http://www.test-api.com/",
88-
headers={"Content-Type": "application/json", "Existing": "123",},
88+
headers={"Content-Type": "application/json", "Existing": "123"},
8989
)
9090
query = ""
9191
client.execute(query=query, headers={"Existing": "456", "New": "foo"})
@@ -186,7 +186,7 @@ async def test_execute_query_with_headers(self, mock_post):
186186
mock_post.return_value.__aenter__.return_value.json = CoroutineMock()
187187
client = GraphqlClient(
188188
endpoint="http://www.test-api.com/",
189-
headers={"Content-Type": "application/json", "Existing": "123",},
189+
headers={"Content-Type": "application/json", "Existing": "123"},
190190
)
191191
query = ""
192192

0 commit comments

Comments
 (0)