We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 119373e commit 6c0b02dCopy full SHA for 6c0b02d
mixpanel/flags/test_utils.py
@@ -14,14 +14,6 @@ def test_traceparent_format_is_correct(self):
14
15
assert re.match(pattern, traceparent), f"Traceparent '{traceparent}' does not match W3C format"
16
17
- def test_traceparent_pseudo_randomness(self):
18
- traceparents = set()
19
-
20
- for _ in range(100):
21
- traceparents.add(generate_traceparent())
22
23
- assert len(traceparents) == 100, f"Expected 100 unique traceparents, got {len(traceparents)}"
24
25
@pytest.mark.parametrize("key,salt,expected_hash", [
26
("abc", "variant", 0.72),
27
("def", "variant", 0.21),
0 commit comments