From d3ec8f4ea93468939c502ef0b34ff09f79074b30 Mon Sep 17 00:00:00 2001 From: Jan Range Date: Tue, 7 May 2024 23:02:46 +0200 Subject: [PATCH] comment out unused test variable --- tests/api/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/test_api.py b/tests/api/test_api.py index 198c314..f882127 100644 --- a/tests/api/test_api.py +++ b/tests/api/test_api.py @@ -126,7 +126,7 @@ def test_token_empty_string(self): def test_token_right_create_dataset_rights(self): BASE_URL = os.getenv("BASE_URL").rstrip("/") api_su = NativeApi(BASE_URL, os.getenv("API_TOKEN_SUPERUSER")) - api_nru = NativeApi(BASE_URL, os.getenv("API_TOKEN_TEST_NO_RIGHTS")) + # api_nru = NativeApi(BASE_URL, os.getenv("API_TOKEN_TEST_NO_RIGHTS")) resp = api_su.get_info_version() assert resp.json()["data"]["version"] == os.getenv("DV_VERSION")