Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
protoroto committed Jan 14, 2025
1 parent c76e983 commit e140549
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from tempfile import mkdtemp
from unittest.mock import patch

import django
from django.test.utils import setup_test_environment, teardown_test_environment

from app_helper import runner
Expand Down Expand Up @@ -415,7 +414,7 @@ def test_server_channels(self, run_with_reloader):
self.assertEqual(run_with_reloader.call_args[0][0].__module__, "channels.management.commands.runserver")
User.objects.all().delete()

@patch("app_helper.server.autoreload.run_with_reloader")
@patch("app_helper.server.autoreload.run_with_reloader")
def test_server_daphne(self, run_with_reloader):
"""Run server command and create default user - daphne version."""
try:
Expand Down

0 comments on commit e140549

Please sign in to comment.