We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c66aa4a commit 8a94d44Copy full SHA for 8a94d44
1 file changed
tests/runtime/test_environment_utils.py
@@ -27,14 +27,6 @@ def test_get_observability_authentication_scope_with_override(monkeypatch):
27
assert result == [override_scope]
28
29
30
-def test_get_observability_authentication_scope_without_override(monkeypatch):
31
- """Test get_observability_authentication_scope returns default when env var is not set."""
32
- monkeypatch.delenv("A365_OBSERVABILITY_SCOPE_OVERRIDE", raising=False)
33
-
34
- result = get_observability_authentication_scope()
35
- assert result == [PROD_OBSERVABILITY_SCOPE]
36
37
38
@pytest.mark.parametrize(
39
"env_value,expected",
40
[
0 commit comments