Skip to content

Commit 0826b59

Browse files
committed
lint
1 parent 017aec0 commit 0826b59

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/test__helpers.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -628,9 +628,8 @@ def test_parse_request_body_json_type_error():
628628
with mock.patch("json.loads", side_effect=TypeError):
629629
# json.loads should raise a TypeError, and the function should return the
630630
# original string
631-
assert (
632-
_helpers._parse_request_body(body, "application/json")
633-
== body.decode("utf-8")
631+
assert _helpers._parse_request_body(body, "application/json") == body.decode(
632+
"utf-8"
634633
)
635634

636635

0 commit comments

Comments
 (0)