From 9b861656c513bfccb705cd4b4ec08c55e6467a43 Mon Sep 17 00:00:00 2001 From: Sami Salonen Date: Mon, 24 Feb 2020 13:26:09 +0200 Subject: [PATCH] Remove unneeded argument. --- tests/test_falconparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_falconparser.py b/tests/test_falconparser.py index 630aa193..4d2f15c3 100644 --- a/tests/test_falconparser.py +++ b/tests/test_falconparser.py @@ -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"},)