From 2b52677fdde34b1c89bdf4411ef95bd1ed0f343d Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 2 Nov 2019 17:56:24 -0300 Subject: Add Python 3.8 support (#16) Fix #15 --- tests/test_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_map.py b/tests/test_map.py index 8d629f8..0b464cf 100644 --- a/tests/test_map.py +++ b/tests/test_map.py @@ -1294,7 +1294,7 @@ class BaseMapTest: self.assertTrue(isinstance(uh, self.Map)) self.assertEqual(h, uh) - with self.assertRaisesRegex(TypeError, "can't pickle"): + with self.assertRaisesRegex(TypeError, "can('t|not) pickle"): pickle.dumps(h.mutate()) @unittest.skipIf(sys.version_info < (3, 7, 0), "__class_getitem__ is not available") -- cgit v1.2.3