File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
tests/snuba/api/endpoints Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -590,11 +590,12 @@ def test_basic_query(self) -> None:
590
590
duration = 200 ,
591
591
start_ts = self .ten_mins_ago ,
592
592
)
593
- self .store_span (span )
593
+ self .store_span (span , is_eap = True )
594
594
595
595
response = self .client .get (
596
596
url ,
597
597
{
598
+ "dataset" : "spans" ,
598
599
"query" : "" ,
599
600
"lowerBound" : "0" ,
600
601
"firstBound" : "100" ,
@@ -637,11 +638,12 @@ def test_order_by(self) -> None:
637
638
),
638
639
]
639
640
640
- self .store_spans (spans )
641
+ self .store_spans (spans , is_eap = True )
641
642
642
643
response = self .client .get (
643
644
url ,
644
645
{
646
+ "dataset" : "spans" ,
645
647
"lowerBound" : "0" ,
646
648
"firstBound" : "100" ,
647
649
"secondBound" : "250" ,
@@ -660,6 +662,7 @@ def test_order_by(self) -> None:
660
662
response = self .client .get (
661
663
url ,
662
664
{
665
+ "dataset" : "spans" ,
663
666
"lowerBound" : "0" ,
664
667
"firstBound" : "100" ,
665
668
"secondBound" : "250" ,
You can’t perform that action at this time.
0 commit comments