mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed hanging indentation in various code.
This commit is contained in:
		| @@ -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)) | ||||
|  | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user