Skip to content

Commit bb03f61

Browse files
committed
Apply black
1 parent b71fc15 commit bb03f61

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test_responses.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,9 @@ def run():
11581158
url = "http://example.com"
11591159
params = {"key1": ["one", "two"], "key2": "three"}
11601160
responses.add(
1161-
method=responses.GET, url=url, body="test",
1161+
method=responses.GET,
1162+
url=url,
1163+
body="test",
11621164
)
11631165
resp = requests.get(url, params=params)
11641166
assert_response(resp, "test")

0 commit comments

Comments
 (0)