diff options
Diffstat (limited to 'tests/regressiontests/admin_scripts/tests.py')
| -rw-r--r-- | tests/regressiontests/admin_scripts/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/admin_scripts/tests.py b/tests/regressiontests/admin_scripts/tests.py index 0c3fc1435e..9061f28d1e 100644 --- a/tests/regressiontests/admin_scripts/tests.py +++ b/tests/regressiontests/admin_scripts/tests.py @@ -894,9 +894,9 @@ class CommandTypes(AdminScriptTestCase): args = ['--help'] out, err = self.run_manage(args) if sys.version_info < (2, 5): - self.assertOutput(out, "usage: manage.py [options]") + self.assertOutput(out, "usage: manage.py subcommand [options] [args]") else: - self.assertOutput(out, "Usage: manage.py [options]") + self.assertOutput(out, "Usage: manage.py subcommand [options] [args]") self.assertOutput(err, "Type 'manage.py help <subcommand>' for help on a specific subcommand.") def test_specific_help(self): |
