Skip to content

Commit b55a907

Browse files
committed
fix ci
1 parent 78bdaf2 commit b55a907

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/unit_tests/observability/test_metrics.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,9 +310,8 @@ class TestReduceOperations:
310310

311311
def test_empty_states(self):
312312
"""Test reduce_metrics_states with empty input."""
313-
metrics, samples = reduce_metrics_states([])
313+
metrics = reduce_metrics_states([])
314314
assert metrics == []
315-
assert samples == {}
316315

317316
def test_single_state(self):
318317
"""Test reduce_metrics_states with single state."""
@@ -358,7 +357,7 @@ def test_multiple_states(self):
358357
]
359358
metrics = reduce_metrics_states(states)
360359

361-
assert len(metrics) == 2
360+
assert len(metrics) == 3
362361

363362
# Convert to dict for easier testing
364363
result_dict = {m.key: (m.value, m.reduction) for m in metrics}

0 commit comments

Comments
 (0)