Skip to content

Commit 0c912d3

Browse files
committed
fix wrong auth msg
1 parent 331e701 commit 0c912d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def test_request_and_check_wrong_url(self):
5757
def test_request_and_check_wrong_auth(self):
5858
"""Test request_and_check utils function with wrong auth."""
5959
url = f"{ACTINIA_BASEURL}api/{ACTINIA_VERSION}/locations"
60-
err_msg = "Unauthorized Access"
60+
err_msg = "Wrong user or password. Please check your inputs."
6161
wrong_auth = ("actinia-gdi", "wrong_pw")
6262
with pytest.raises(Exception) as excinfo:
6363
request_and_check("GET", url, status_code=(200,), **{"auth": wrong_auth})

0 commit comments

Comments
 (0)