diff options
| author | Josh Soref <jsoref@users.noreply.github.com> | 2015-12-02 23:55:50 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-03 12:48:24 -0500 |
| commit | 93452a70e8a62c7408eeded444f5088d4a26212d (patch) | |
| tree | dfc64c81f0610e45650350e2d41918f5913ed098 /tests/template_tests/test_response.py | |
| parent | b6dd0afead80a17d0ac8c3ba35c510afac32a0b8 (diff) | |
Fixed many spelling mistakes in code, comments, and docs.
Diffstat (limited to 'tests/template_tests/test_response.py')
| -rw-r--r-- | tests/template_tests/test_response.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_tests/test_response.py b/tests/template_tests/test_response.py index 05073b6f74..e7f71be4f1 100644 --- a/tests/template_tests/test_response.py +++ b/tests/template_tests/test_response.py @@ -155,7 +155,7 @@ class SimpleTemplateResponseTest(SimpleTestCase): def test_pickling(self): # Create a template response. The context is - # known to be unpickleable (e.g., a function). + # known to be unpicklable (e.g., a function). response = SimpleTemplateResponse('first/test.html', { 'value': 123, 'fn': datetime.now, @@ -267,7 +267,7 @@ class TemplateResponseTest(SimpleTestCase): def test_pickling(self): # Create a template response. The context is - # known to be unpickleable (e.g., a function). + # known to be unpicklable (e.g., a function). response = TemplateResponse(self.factory.get('/'), 'first/test.html', { 'value': 123, |
