Skip to content

Commit 67a1a39

Browse files
committed
remove from tests
1 parent 646acfb commit 67a1a39

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

tests/sentry/deletions/test_sentry_app_installations.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from sentry.silo.base import SiloMode
1818
from sentry.silo.safety import unguarded_write
1919
from sentry.testutils.cases import TestCase
20-
from sentry.testutils.helpers.options import override_options
2120
from sentry.testutils.outbox import outbox_runner
2221
from sentry.testutils.silo import assume_test_silo_mode, control_silo_test
2322
from sentry.workflow_engine.models import Action
@@ -112,7 +111,6 @@ def test_soft_deletes_installation(self) -> None:
112111

113112
assert c.fetchone()[0] == 1
114113

115-
@override_options({"workflow_engine.sentry-app-actions-outbox": True})
116114
def test_disables_actions(self) -> None:
117115
action = self.create_action(
118116
type=Action.Type.SENTRY_APP,

tests/sentry/sentry_apps/api/endpoints/test_organization_sentry_app_installation_details.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from sentry.sentry_apps.token_exchange.grant_exchanger import GrantExchanger
1717
from sentry.testutils.cases import APITestCase
1818
from sentry.testutils.helpers.analytics import assert_last_analytics_event
19-
from sentry.testutils.helpers.options import override_options
2019
from sentry.testutils.outbox import outbox_runner
2120
from sentry.testutils.silo import control_silo_test
2221
from sentry.users.services.user.service import user_service
@@ -108,7 +107,6 @@ def test_no_access_outside_install_organization(self) -> None:
108107
class DeleteSentryAppInstallationDetailsTest(SentryAppInstallationDetailsTest):
109108
@responses.activate
110109
@patch("sentry.analytics.record")
111-
@override_options({"workflow_engine.sentry-app-actions-outbox": True})
112110
def test_delete_install(self, record: MagicMock) -> None:
113111
responses.add(url="https://example.com/webhook", method=responses.POST, body=b"")
114112
self.login_as(user=self.user)

0 commit comments

Comments
 (0)