Skip to content

Commit 09a6f3c

Browse files
committed
fix completion test broken by mistake
1 parent 43b84d7 commit 09a6f3c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_parser_completers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2188,7 +2188,9 @@ def test_relative_import_path(self):
21882188

21892189
def test_media_root_completer(self):
21902190
completions = get_values(self.shellcompletion.complete("completion --media "))
2191-
self.assertEqual(completions, ["file.txt"])
2191+
self.assertEqual(
2192+
set(completions), {"file.txt", "file_text.txt", "file_binary.txt"}
2193+
)
21922194

21932195
def test_static_root_completer(self):
21942196
completions = get_values(self.shellcompletion.complete("completion --statics "))

0 commit comments

Comments
 (0)