diff options
author | John Vandenberg <jayvdb@gmail.com> | 2015-10-20 20:30:43 +1100 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2015-10-20 12:19:17 -0400 |
commit | 9e3f6c7483d2362660e2bee554125d0215789d9d (patch) | |
tree | 49c49667e7cbb4f3b24ce0753f628484c7a4ccb2 /tests/sessions_tests | |
parent | 541aa2434d5c8f40e991aafb24fde4084b5ab048 (diff) | |
download | django-9e3f6c7483d2362660e2bee554125d0215789d9d.tar.gz |
Fixed quad quoted ("""") docstring starts.
Diffstat (limited to 'tests/sessions_tests')
-rw-r--r-- | tests/sessions_tests/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sessions_tests/tests.py b/tests/sessions_tests/tests.py index 351d15a722..0a99aad1ac 100644 --- a/tests/sessions_tests/tests.py +++ b/tests/sessions_tests/tests.py @@ -736,7 +736,7 @@ class SessionMiddlewareTests(TestCase): self.assertEqual(response['Vary'], 'Cookie') def test_empty_session_saved(self): - """" + """ If a session is emptied of data but still has a key, it should still be updated. """ |