Skip to content

Commit 1226eef

Browse files
authored
Merge pull request #2465 from tisnik/lcore-3593
LCORE-3593: Added missing type hints
2 parents e50466c + 2ab7e77 commit 1226eef

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/unit/utils/test_otel_tracing.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ def test_hash_uniqueness(self) -> None:
114114
assert "Confidential" not in result1
115115
assert "Confidential" not in result2
116116

117-
def test_hmac_deterministic_with_env_secret(self, monkeypatch):
117+
def test_hmac_deterministic_with_env_secret(
118+
self, monkeypatch: pytest.MonkeyPatch
119+
) -> None:
118120
"""Test that HMAC produces deterministic results with environment secret."""
119121
# Set a known secret
120122
monkeypatch.setenv("OTEL_ANONYMIZATION_SECRET", "test-secret-key")

0 commit comments

Comments
 (0)