From f0e0c5e28e5de0b29c8fa9f962a52f5d0ad70f25 Mon Sep 17 00:00:00 2001 From: Max Wolschlager Date: Tue, 27 Aug 2024 13:34:54 +0200 Subject: [PATCH] use manager testing instance in tests --- tests/test_auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_auth.py b/tests/test_auth.py index 771226ce..4b5e2941 100644 --- a/tests/test_auth.py +++ b/tests/test_auth.py @@ -311,5 +311,5 @@ def test_invalid_credentials(): # @wronguser cannot exist ("@" is not allowed) and will therefore always be invalid. with pytest.raises(InvalidCredentials): ManagerAuth( - "@wronguser", "wrongpwd", "https://api.dev.manager.ece.iiasa.ac.at/v1/" + "@wronguser", "wrongpwd", "https://api.testing.manager.ece.iiasa.ac.at/v1/" )