Skip to content

Commit ad6d43b

Browse files
committed
Fix tests
1 parent e3f582c commit ad6d43b

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

tests/test_matcher.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,3 @@ def test_expect_methods_are_equivalent(httpserver: HTTPServer):
99
httpserver.expect(matcher).respond_with_data(expected_response)
1010
resp = requests.post(httpserver.url_for("/test"), json={"list": [1, 2, 3, 4]})
1111
assert resp.text == expected_response
12-
httpserver.clear()
13-
14-
httpserver.expect_request("/test", method="POST").respond_with_data("OK")
15-
resp = requests.post(httpserver.url_for("/test"), json={"list": [1, 2, 3, 4]})
16-
assert resp.text == expected_response

tests/test_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def test_sdist_contents(build: Build, version: str):
234234
"test_urimatch.py",
235235
"test_wait.py",
236236
"test_with_statement.py",
237-
"test_matcher.py"
237+
"test_matcher.py",
238238
},
239239
}
240240

0 commit comments

Comments
 (0)