Skip to content

Commit

Permalink
tests: fix test for request json (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
sansyrox committed Apr 28, 2024
1 parent 7713c9b commit 20c3f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/test_request_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"route, body, expected_result",
[
("/sync/request_json", '{"hello": "world"}', "<class 'dict'>"),
("/sync/request_json/key", '{"hello": "world"}', "hello"),
("/sync/request_json/key", '{"key": "world"}', "world"),
("/sync/request_json", '{"hello": "world"', "None"),
("/async/request_json", '{"hello": "world"}', "<class 'dict'>"),
("/async/request_json", '{"hello": "world"', "None"),
Expand Down

0 comments on commit 20c3f21

Please sign in to comment.