diff options
| author | Vajrasky Kok <sky.kok@speaklikeaking.com> | 2013-11-26 13:52:47 +0800 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2013-11-26 10:18:54 +0100 |
| commit | 16d73d7416a7902703ee8022f093667f7ac9ef5b (patch) | |
| tree | d11360b564714177c89936d32bf2bb1c5077bcc3 /tests/model_forms | |
| parent | c74504c2dd21974571ab72805fbfc8d4d76ce151 (diff) | |
Fixed #21512 -- Added more complete information about Pillow and PIL in model_fields and model_forms tests.
Diffstat (limited to 'tests/model_forms')
| -rw-r--r-- | tests/model_forms/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index 95092c2b7a..bf7b3d296a 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -1541,7 +1541,7 @@ class OldFormForXTests(TestCase): self.assertEqual(bif.is_valid(), False) self.assertEqual(bif.errors, {'biggie': ['Ensure this value is less than or equal to 9223372036854775807.']}) - @skipUnless(test_images, "PIL not installed") + @skipUnless(test_images, "Pillow/PIL not installed") def test_image_field(self): # ImageField and FileField are nearly identical, but they differ slighty when # it comes to validation. This specifically tests that #6302 is fixed for |
