From 614ba3ad2d5cc210d028cbc21abc1a9f3ca8c686 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Tue, 20 Oct 2015 20:30:43 +1100 Subject: [PATCH] [1.9.x] Fixed quad quoted ("""") docstring starts. Backport of 9e3f6c7483d2362660e2bee554125d0215789d9d from master --- tests/admin_views/tests.py | 2 +- tests/sessions_tests/tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py index 87d6f86ae4..ab8c68c666 100644 --- a/tests/admin_views/tests.py +++ b/tests/admin_views/tests.py @@ -2430,7 +2430,7 @@ class AdminViewStringPrimaryKeyTest(TestCase): self.assertEqual(logentry.object_id, str(edited_obj.pk)) def test_logentry_save(self): - """" + """ LogEntry.action_time is a timestamp of the date when the entry was created. It shouldn't be updated on a subsequent save(). """ diff --git a/tests/sessions_tests/tests.py b/tests/sessions_tests/tests.py index 1a50720ffa..d2188f4162 100644 --- a/tests/sessions_tests/tests.py +++ b/tests/sessions_tests/tests.py @@ -726,7 +726,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. """