From cdca2793e0d66c631c7669f5d5e3aa5869e8f428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A1ssio=20Botaro?= Date: Mon, 4 May 2015 12:55:44 -0300 Subject: [PATCH] Maintain py2.6k compability --- gluon/tests/test_storage.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gluon/tests/test_storage.py b/gluon/tests/test_storage.py index 810b5b63..ca047e95 100644 --- a/gluon/tests/test_storage.py +++ b/gluon/tests/test_storage.py @@ -151,8 +151,6 @@ class TestList(unittest.TestCase): '''Mantains list behaviour.''' a = List((1, 2, 3)) self.assertEqual(a[0], 1) - with self.assertRaises(IndexError): - a[3] self.assertEqual(a[::-1], [3, 2, 1])