From 58337b32236eb57d82bf62ed077add3ec69e37f2 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 28 Oct 2012 16:51:51 +0100 Subject: [PATCH] Marked cookies-based session expiry test as an expected failure. Refs #19201. --- django/contrib/sessions/tests.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/django/contrib/sessions/tests.py b/django/contrib/sessions/tests.py index 129cd217354df..718967791d7b2 100644 --- a/django/contrib/sessions/tests.py +++ b/django/contrib/sessions/tests.py @@ -542,3 +542,8 @@ def test_cycle(self): testing for this behavior is meaningless. """ pass + + @unittest.expectedFailure + def test_actual_expiry(self): + # The cookie backend doesn't handle non-default expiry dates, see #19201 + super(CookieSessionTests, self).test_actual_expiry()