Skip to content

Commit

Permalink
Remove unneeded argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sami Salonen committed Feb 24, 2020
1 parent 58ac9f2 commit 9b86165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_falconparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_parsing_headers(self, testapp):
assert res.json == {"NAME": "Fred"}

# `falcon.testing.TestClient.simulate_request` parses request with `wsgiref`
def test_body_parsing_works_with_simulate(self, testapp):
def test_body_parsing_works_with_simulate(self):
app = self.create_app()
client = falcon.testing.TestClient(app)
res = client.simulate_post("/echo_json", json={"name": "Fred"},)
Expand Down

0 comments on commit 9b86165

Please sign in to comment.