Skip to content

Commit b47b652

Browse files
authored
ref(explorer): date param test fix (#104493)
smol test fix
1 parent ad93a40 commit b47b652

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sentry/seer/explorer/test_tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def test_spans_timeseries_count_metric_start_end_prioritized_over_stats_period(
176176
assert params["start"] == start_iso
177177
assert params["end"] is not None
178178
assert params["end"] == end_iso
179-
assert "stats_period" not in params
179+
assert "statsPeriod" not in params
180180

181181
def test_spans_timeseries_multiple_metrics(self):
182182
"""Test timeseries query with multiple metrics"""
@@ -287,7 +287,7 @@ def test_spans_table_query_start_end_errors_with_stats_period(self, mock_client)
287287
assert params["start"] == start_iso
288288
assert params["end"] is not None
289289
assert params["end"] == end_iso
290-
assert "stats_period" not in params
290+
assert "statsPeriod" not in params
291291

292292
def test_spans_table_specific_operation(self):
293293
"""Test table query filtering by specific operation"""

0 commit comments

Comments
 (0)