From fb02b9b819ac9d81bc8c4ae2853573fcebc80e47 Mon Sep 17 00:00:00 2001 From: Max Wolschlager Date: Wed, 28 Aug 2024 15:27:22 +0200 Subject: [PATCH] use manager testing instance in tests (#113) --- 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/" )