Browse Source

fix: Test was broken during merge (#42619)

Seems like there was a bad merge with master that didn't trigger CI, so
fixing this test.
Evan Hicks 2 years ago
parent
commit
5693dbf6fc

BIN
fixtures/rookout-bw.png


BIN
fixtures/rookout-color.png


+ 1 - 1
tests/sentry/issues/test_search_issues_dataset.py

@@ -29,7 +29,7 @@ class DatasetTest(SnubaTestCase, TestCase):  # type: ignore[misc]
         }
         request = json_to_snql(json_body, "search_issues")
         request.validate()
-        resp = _snql_query(((request, None, None), Hub(Hub.current), {}))
+        resp = _snql_query(((request, None, None), Hub(Hub.current), {}, "test_api"))
         assert resp[0].status == 200
         stuff = json.loads(resp[0].data)