Author: Alex
Date: 2011-01-19 08:41:40 -0600 (Wed, 19 Jan 2011)
New Revision: 15244

Modified:
   django/trunk/tests/regressiontests/test_client_regress/models.py
Log:
Fixed a regression in the test suite from [15236].

Modified: django/trunk/tests/regressiontests/test_client_regress/models.py
===================================================================
--- django/trunk/tests/regressiontests/test_client_regress/models.py    
2011-01-19 14:39:54 UTC (rev 15243)
+++ django/trunk/tests/regressiontests/test_client_regress/models.py    
2011-01-19 14:41:40 UTC (rev 15244)
@@ -847,7 +847,8 @@
         self.assertIn(encode_file('IGNORE', 'IGNORE', 
DummyFile("file.zip"))[2], (
                         'Content-Type: application/x-compress',
                         'Content-Type: application/x-zip',
-                        'Content-Type: application/x-zip-compressed'))
+                        'Content-Type: application/x-zip-compressed',
+                        'Content-Type: application/zip',))
         self.assertEqual('Content-Type: application/octet-stream',
                          encode_file('IGNORE', 'IGNORE', 
DummyFile("file.unknown"))[2])
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to