Commit 67863b3b authored by Tim Graham's avatar Tim Graham
Browse files

Fixed test failure introduced in efd1e609 (sqlmigrate)

parent 70440a8b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ class BashCompletionTests(unittest.TestCase):
        "Subcommands can be autocompleted"
        self._user_input('django-admin.py sql')
        output = self._run_autocomplete()
        self.assertEqual(output, ['sql sqlall sqlclear sqlcustom sqldropindexes sqlflush sqlindexes sqlinitialdata sqlsequencereset'])
        self.assertEqual(output, ['sql sqlall sqlclear sqlcustom sqldropindexes sqlflush sqlindexes sqlinitialdata sqlmigrate sqlsequencereset'])

    def test_help(self):
        "No errors, just an empty list if there are no autocomplete options"