diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-10-28 16:51:51 +0100 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-10-28 18:03:23 +0100 |
| commit | 58337b32236eb57d82bf62ed077add3ec69e37f2 (patch) | |
| tree | 8782832880708b80f4f1709cd25016b102a51665 | |
| parent | 58a086acfbec833f44cd53e984972250bbb67457 (diff) | |
Marked cookies-based session expiry test as an expected failure.
Refs #19201.
| -rw-r--r-- | django/contrib/sessions/tests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/django/contrib/sessions/tests.py b/django/contrib/sessions/tests.py index 129cd21735..718967791d 100644 --- a/django/contrib/sessions/tests.py +++ b/django/contrib/sessions/tests.py @@ -542,3 +542,8 @@ class CookieSessionTests(SessionTestsMixin, TestCase): 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() |
