Skip to content

Commit b73a53b

Browse files
committed
fix test
1 parent 9017714 commit b73a53b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/sentry/integrations/opsgenie/test_integration.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ def test_update_config_valid(self):
135135
integration = Integration.objects.get(provider=self.provider.key)
136136
org_integration = OrganizationIntegration.objects.get(integration_id=integration.id)
137137

138+
responses.add(responses.GET, url="https://api.opsgenie.com/v2/teams", status=200, json={})
139+
138140
data = {"team_table": [{"id": "", "team": "cool-team", "integration_key": "1234-5678"}]}
139141
installation.update_organization_config(data)
140142
team_id = str(org_integration.id) + "-" + "cool-team"

0 commit comments

Comments
 (0)