Skip to content

Commit f02baf6

Browse files
authored
tests(eap): Use eap for spans samples tests (#97614)
1 parent 71f3bfa commit f02baf6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/snuba/api/endpoints/test_organization_events_meta.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,11 +590,12 @@ def test_basic_query(self) -> None:
590590
duration=200,
591591
start_ts=self.ten_mins_ago,
592592
)
593-
self.store_span(span)
593+
self.store_span(span, is_eap=True)
594594

595595
response = self.client.get(
596596
url,
597597
{
598+
"dataset": "spans",
598599
"query": "",
599600
"lowerBound": "0",
600601
"firstBound": "100",
@@ -637,11 +638,12 @@ def test_order_by(self) -> None:
637638
),
638639
]
639640

640-
self.store_spans(spans)
641+
self.store_spans(spans, is_eap=True)
641642

642643
response = self.client.get(
643644
url,
644645
{
646+
"dataset": "spans",
645647
"lowerBound": "0",
646648
"firstBound": "100",
647649
"secondBound": "250",
@@ -660,6 +662,7 @@ def test_order_by(self) -> None:
660662
response = self.client.get(
661663
url,
662664
{
665+
"dataset": "spans",
663666
"lowerBound": "0",
664667
"firstBound": "100",
665668
"secondBound": "250",

0 commit comments

Comments
 (0)