Replaced 'test' by 'sqlall' management command in reverse_lazy test

This commit is contained in:
Claude Paroz 2014-02-18 13:20:02 +01:00
parent 6b310bafc5
commit 203f55b5d5
1 changed files with 2 additions and 2 deletions

View File

@ -317,8 +317,8 @@ LOGIN_URL = reverse_lazy('login')""")
self.remove_settings('settings.py')
def test_lazy_in_settings(self):
out, err = self.run_manage(['test'])
self.assertOutput(err, "Ran 0 tests")
out, err = self.run_manage(['sqlall', 'auth'])
self.assertNoOutput(err)
class ReverseShortcutTests(TestCase):