Skip to content

Commit d49bd63

Browse files
committed
Fix black formatting
1 parent 481b837 commit d49bd63

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

tests/test_client.py

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,7 @@ def test_execute_result_error():
111111

112112
client = Client(
113113
retries=expected_retries,
114-
transport=RequestsHTTPTransport(
115-
url="https://countries.trevorblades.com/",
116-
),
114+
transport=RequestsHTTPTransport(url="https://countries.trevorblades.com/",),
117115
)
118116

119117
failing_query = gql(
@@ -152,8 +150,7 @@ def test_http_transport_raise_for_status_error(http_transport_query):
152150
def test_http_transport_verify_error(http_transport_query):
153151
client = Client(
154152
transport=RequestsHTTPTransport(
155-
url="https://countries.trevorblades.com/",
156-
verify=False,
153+
url="https://countries.trevorblades.com/", verify=False,
157154
)
158155
)
159156
with pytest.warns(Warning) as record:
@@ -166,8 +163,7 @@ def test_http_transport_verify_error(http_transport_query):
166163
def test_http_transport_specify_method_valid(http_transport_query):
167164
client = Client(
168165
transport=RequestsHTTPTransport(
169-
url="https://countries.trevorblades.com/",
170-
method="POST",
166+
url="https://countries.trevorblades.com/", method="POST",
171167
)
172168
)
173169

@@ -179,8 +175,7 @@ def test_http_transport_specify_method_valid(http_transport_query):
179175
def test_http_transport_specify_method_invalid(http_transport_query):
180176
client = Client(
181177
transport=RequestsHTTPTransport(
182-
url="https://countries.trevorblades.com/",
183-
method="GET",
178+
url="https://countries.trevorblades.com/", method="GET",
184179
)
185180
)
186181

0 commit comments

Comments
 (0)