We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 331e701 commit 0c912d3Copy full SHA for 0c912d3
1 file changed
tests/test_utils.py
@@ -57,7 +57,7 @@ def test_request_and_check_wrong_url(self):
57
def test_request_and_check_wrong_auth(self):
58
"""Test request_and_check utils function with wrong auth."""
59
url = f"{ACTINIA_BASEURL}api/{ACTINIA_VERSION}/locations"
60
- err_msg = "Unauthorized Access"
+ err_msg = "Wrong user or password. Please check your inputs."
61
wrong_auth = ("actinia-gdi", "wrong_pw")
62
with pytest.raises(Exception) as excinfo:
63
request_and_check("GET", url, status_code=(200,), **{"auth": wrong_auth})
0 commit comments