Skip to content

Commit 2e299cc

Browse files
committed
.
1 parent 69f2bdd commit 2e299cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/sentry/integrations/test_pipeline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _modify_provider(self):
7575
yield
7676

7777
def _setup_cell_restriction(self):
78-
self.provider.is_cell_restricted = True
78+
self.provider.is_cell_restricted = True # type: ignore[misc]
7979
na_orgs = [
8080
self.create_organization(name="na_org"),
8181
self.create_organization(name="na_org_2"),
@@ -144,7 +144,7 @@ def test_with_customer_domain(self, *args) -> None:
144144
@patch("sentry.signals.integration_added.send_robust")
145145
def test_provider_should_check_cell_violation(self, *args) -> None:
146146
"""Ensures we validate cells if `provider.is_cell_restricted` is set to True"""
147-
self.provider.is_cell_restricted = True
147+
self.provider.is_cell_restricted = True # type: ignore[misc]
148148
self.pipeline.state.data = {"external_id": self.external_id}
149149
with patch(
150150
"sentry.integrations.pipeline.is_violating_cell_restriction"
@@ -727,7 +727,7 @@ def _modify_provider(self):
727727
yield
728728

729729
def _setup_cell_restriction(self):
730-
self.provider.is_cell_restricted = True
730+
self.provider.is_cell_restricted = True # type: ignore[misc]
731731
na_orgs = [
732732
self.create_organization(name="na_org"),
733733
self.create_organization(name="na_org_2"),

0 commit comments

Comments
 (0)