Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/sentry/seer/explorer/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_spans_timeseries_count_metric_start_end_prioritized_over_stats_period(
assert params["start"] == start_iso
assert params["end"] is not None
assert params["end"] == end_iso
assert "stats_period" not in params
assert "statsPeriod" not in params

def test_spans_timeseries_multiple_metrics(self):
"""Test timeseries query with multiple metrics"""
Expand Down Expand Up @@ -287,7 +287,7 @@ def test_spans_table_query_start_end_errors_with_stats_period(self, mock_client)
assert params["start"] == start_iso
assert params["end"] is not None
assert params["end"] == end_iso
assert "stats_period" not in params
assert "statsPeriod" not in params

def test_spans_table_specific_operation(self):
"""Test table query filtering by specific operation"""
Expand Down
Loading