mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
Fixed hanging indentation in various code.
This commit is contained in:
parent
aeb8c38178
commit
362813d628
40 changed files with 266 additions and 232 deletions
|
@ -629,13 +629,11 @@ class KeepPotFileExtractorTests(ExtractorTests):
|
|||
self.assertFalse(os.path.exists(self.POT_FILE))
|
||||
|
||||
def test_keep_pot_explicitly_disabled(self):
|
||||
management.call_command('makemessages', locale=[LOCALE], verbosity=0,
|
||||
keep_pot=False)
|
||||
management.call_command('makemessages', locale=[LOCALE], verbosity=0, keep_pot=False)
|
||||
self.assertFalse(os.path.exists(self.POT_FILE))
|
||||
|
||||
def test_keep_pot_enabled(self):
|
||||
management.call_command('makemessages', locale=[LOCALE], verbosity=0,
|
||||
keep_pot=True)
|
||||
management.call_command('makemessages', locale=[LOCALE], verbosity=0, keep_pot=True)
|
||||
self.assertTrue(os.path.exists(self.POT_FILE))
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue