Skip to content

Commit 33ffbbe

Browse files
committed
Fix unit tests too
1 parent abba1f3 commit 33ffbbe

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/unit/internal/test_output_format.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,14 @@ def _generate_bucket_metric(index: int) -> TimeseriesBucket:
528528
first_y=90.0 * index,
529529
last_x=20.0 * (index + 1) - 2,
530530
last_y=100.0 * index,
531+
532+
y_min=80.0 * index,
533+
y_max=110.0 * index,
534+
finite_point_count=10 + index,
535+
nan_count=5 - index,
536+
positive_inf_count=2 * index,
537+
negative_inf_count=index,
538+
finite_points_sum=950.0 * index,
531539
)
532540

533541

0 commit comments

Comments
 (0)