From 299e48e6cb14710e8e32348ebfbfb239aba42ef4 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Wed, 17 Jun 2020 22:52:27 +0200 Subject: [PATCH] TST: fix tests --- unittests/test_authentication_auth_token.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unittests/test_authentication_auth_token.py b/unittests/test_authentication_auth_token.py index bfaa1cab..1eaf0918 100644 --- a/unittests/test_authentication_auth_token.py +++ b/unittests/test_authentication_auth_token.py @@ -70,7 +70,8 @@ def test_configure_connection(): def test_login_raises(): - c = configure_connection(password_method="auth_token", + c = configure_connection(url="https://example.com", + password_method="auth_token", auth_token="[auth_token]") with raises(LoginFailedException): c._login() -- GitLab