diff --git a/galaxy_ng/tests/integration/api/test_api_base.py b/galaxy_ng/tests/integration/api/test_api_base.py index 4c8ddec6f4..7d1857fd9f 100644 --- a/galaxy_ng/tests/integration/api/test_api_base.py +++ b/galaxy_ng/tests/integration/api/test_api_base.py @@ -3,19 +3,19 @@ from ..utils.iqe_utils import remove_from_cache -@pytest.mark.min_hub_version("4.6dev") +@pytest.mark.min_hub_version("4.10dev") @pytest.mark.deployment_standalone @pytest.mark.skip_in_gw def test_galaxy_api_root_standalone_no_auth_access(galaxy_client): """Test galaxy API root.""" gc = galaxy_client("basic_user") + remove_from_cache("basic_user") del gc.headers["Authorization"] # verify api root works without authentication response = gc.get("") assert "v3" in response["available_versions"] assert "pulp-v3" in response["available_versions"] - remove_from_cache("basic_user") @pytest.mark.min_hub_version("4.6dev")