diff options
| author | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-07-18 15:37:14 +0200 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2025-07-23 10:09:43 -0300 |
| commit | 1ecf6889cabc9f3f60d3fdd651468cddd8f4da6e (patch) | |
| tree | 77eebf89eaf5f1ee6f5947a962caa67b5cca7f4b /tests/model_fields | |
| parent | 1909108f9f0f2a91c1ec0fcdb65b01f58743a871 (diff) | |
Removed double spaces after periods and within phrases.
Diffstat (limited to 'tests/model_fields')
| -rw-r--r-- | tests/model_fields/test_imagefield.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/model_fields/test_imagefield.py b/tests/model_fields/test_imagefield.py index 7265da598b..4458055189 100644 --- a/tests/model_fields/test_imagefield.py +++ b/tests/model_fields/test_imagefield.py @@ -71,7 +71,7 @@ class ImageFieldTestMixin(SerializeMixin): (if defined) the image field is caching to. Note, this method will check for dimension fields named by adding - "_width" or "_height" to the name of the ImageField. So, the + "_width" or "_height" to the name of the ImageField. So, the models used in these tests must have their fields named accordingly. @@ -294,7 +294,7 @@ class ImageFieldTwoDimensionsTests(ImageFieldTestMixin, TestCase): # Test dimensions after fetching from database. p = self.PersonModel.objects.get(name="Joe") # Bug 11084: Dimensions should not get recalculated if file is - # coming from the database. We test this by checking if the file + # coming from the database. We test this by checking if the file # was opened. self.assertIs(p.mugshot.was_opened, False) self.check_dimensions(p, 4, 8) @@ -442,7 +442,7 @@ class TwoImageFieldTests(ImageFieldTestMixin, TestCase): # Test dimensions after fetching from database. p = self.PersonModel.objects.get(name="Joe") # Bug 11084: Dimensions should not get recalculated if file is - # coming from the database. We test this by checking if the file + # coming from the database. We test this by checking if the file # was opened. self.assertIs(p.mugshot.was_opened, False) self.assertIs(p.headshot.was_opened, False) |
