From 321e94fa41b121f65c02119c02098df327bbd569 Mon Sep 17 00:00:00 2001 From: za Date: Thu, 27 Oct 2016 14:53:39 +0700 Subject: Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings. --- tests/swappable_models/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/swappable_models') diff --git a/tests/swappable_models/tests.py b/tests/swappable_models/tests.py index 9fd6a15942..a9a7751888 100644 --- a/tests/swappable_models/tests.py +++ b/tests/swappable_models/tests.py @@ -29,7 +29,7 @@ class SwappableModelTests(TestCase): new_io = StringIO() management.call_command('migrate', interactive=False, stdout=new_io) - # Check that content types and permissions exist for the swapped model, + # Content types and permissions exist for the swapped model, # but not for the swappable model. apps_models = [(p.content_type.app_label, p.content_type.model) for p in Permission.objects.all()] @@ -43,6 +43,6 @@ class SwappableModelTests(TestCase): @override_settings(TEST_ARTICLE_MODEL='swappable_models.article') def test_case_insensitive(self): - "Model names are case insensitive. Check that model swapping honors this." + "Model names are case insensitive. Model swapping honors this." Article.objects.all() self.assertIsNone(Article._meta.swapped) -- cgit v1.3