monkeypatch and tmp_path not used

Co-Authored-By: Timost <Timost@users.noreply.github.com>
This commit is contained in:
Alexandre Aubin 2019-11-19 14:33:49 +01:00 committed by GitHub
parent d3496425aa
commit 19348421b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ def test_request_no_auth_needed(moulinette_webapi):
assert r.text == '"some_data_from_none"'
def test_request_with_auth_but_not_logged(monkeypatch, tmp_path, moulinette_webapi):
def test_request_with_auth_but_not_logged(moulinette_webapi):
r = requests.get(moulinette_webapi + "/test-auth/default")
@ -30,7 +30,7 @@ def test_request_with_auth_but_not_logged(monkeypatch, tmp_path, moulinette_weba
assert r.text == "Authentication required"
def test_login(monkeypatch, moulinette_webapi):
def test_login(moulinette_webapi):
r = login(moulinette_webapi)