Skip to content

Commit f944bb3

Browse files
committed
Fix py38 syntax
1 parent ada08e2 commit f944bb3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/integration/django/test_django_integration.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,9 @@ def test_auto_inject_views_enabled_calls_injection():
233233
# WHEN we call ready() with auto_inject_views=True
234234
wireup_config = apps.get_app_config("wireup")
235235

236-
with (
237-
patch("wireup.integration.django.apps.settings") as mock_settings,
238-
patch.object(wireup_config, "_inject") as mock_inject,
239-
):
236+
with patch("wireup.integration.django.apps.settings") as mock_settings, patch.object(
237+
wireup_config, "_inject"
238+
) as mock_inject:
240239
mock_settings.WIREUP = settings_enabled
241240

242241
wireup_config.ready()

0 commit comments

Comments
 (0)