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/file_uploads/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/file_uploads/tests.py') diff --git a/tests/file_uploads/tests.py b/tests/file_uploads/tests.py index 9e77e6b0f0..5f6a50250d 100644 --- a/tests/file_uploads/tests.py +++ b/tests/file_uploads/tests.py @@ -450,7 +450,7 @@ class FileUploadTests(TestCase): }) request = response.wsgi_request - # Check that the files got actually parsed. + # The files were parsed. self.assertTrue(hasattr(request, '_files')) file = request._files['file'] @@ -469,7 +469,7 @@ class FileUploadTests(TestCase): }) request = response.wsgi_request - # Check that the fd closing logic doesn't trigger parsing of the stream + # The fd closing logic doesn't trigger parsing of the stream self.assertFalse(hasattr(request, '_files')) def test_file_error_blocking(self): -- cgit v1.3