mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	[1.10.x] Fixed #26692 -- Relaxed an i18n compilemessages test.
The actual non-ASCII character differs on Windows.
Backport of 71421e8f87 from master
			
			
This commit is contained in:
		
				
					committed by
					
						 Tim Graham
						Tim Graham
					
				
			
			
				
	
			
			
			
						parent
						
							bad894d5b8
						
					
				
				
					commit
					777bc8f7d6
				
			| @@ -178,12 +178,12 @@ class CompilationErrorHandling(MessageCompilationTests): | ||||
|                 try: | ||||
|                     call_command('compilemessages', locale=['ko'], verbosity=0) | ||||
|                 except CommandError as err: | ||||
|                     self.assertIn("'<EFBFBD>' cannot start a field name", six.text_type(err)) | ||||
|                     self.assertIn("' cannot start a field name", six.text_type(err)) | ||||
|             else: | ||||
|                 cmd = MakeMessagesCommand() | ||||
|                 if cmd.gettext_version < (0, 18, 3): | ||||
|                     raise unittest.SkipTest("python-brace-format is a recent gettext addition.") | ||||
|                 with self.assertRaisesMessage(CommandError, "'<EFBFBD>' cannot start a field name"): | ||||
|                 with self.assertRaisesMessage(CommandError, "' cannot start a field name"): | ||||
|                     call_command('compilemessages', locale=['ko'], verbosity=0) | ||||
|  | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user