Skip to content

Commit 05a39bd

Browse files
committed
Temp assertion
1 parent c107e2c commit 05a39bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sentry/api/endpoints/issues/test_related_issues.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from django.urls import reverse
22

3+
from sentry.models.group import Group
34
from sentry.testutils.cases import APITestCase
45

5-
# from sentry.utils.samples import load_data
6-
76

87
class RelatedIssuesTest(APITestCase):
98
endpoint = "sentry-api-0-issues-related-issues"
@@ -25,6 +24,7 @@ def _data(self, type: str, value: str) -> dict[str, object]:
2524

2625
def test_same_root_related_issues(self) -> None:
2726
# This is the group we're going to query about
27+
assert Group.objects.count() == 0
2828
group = self.create_group(data=self._data(self.error_type, self.error_value))
2929
self.group_id = group.id
3030

0 commit comments

Comments
 (0)