From e804a07d76fc85468f27f7130ae1442fabcd650d Mon Sep 17 00:00:00 2001 From: hesham942 Date: Fri, 14 Mar 2025 15:16:38 +0200 Subject: Fixed #36252 -- Handled duplicate automatic imports in the shell command. --- tests/shell/tests.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/shell/tests.py') diff --git a/tests/shell/tests.py b/tests/shell/tests.py index 49c85ecbe3..ff4db089f7 100644 --- a/tests/shell/tests.py +++ b/tests/shell/tests.py @@ -303,11 +303,16 @@ class ShellCommandAutoImportsTestCase(SimpleTestCase): def test_message_with_stdout_listing_objects_with_isort_not_installed(self): class TestCommand(shell.Command): def get_auto_imports(self): + # Include duplicate import strings to ensure proper handling, + # independent of isort's deduplication (#36252). return super().get_auto_imports() + [ "django.urls.reverse", "django.urls.resolve", "shell", "django", + "django.urls.reverse", + "shell", + "django", ] with captured_stdout() as stdout: -- cgit v1.3