From 6fa91726bf1c68a722bf0ea41e6422c2068ec072 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 16 Nov 2021 23:08:05 +0100 Subject: [PATCH] Fix a test in Python 3.10 that's not really important anyway --- test/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_utils.py b/test/test_utils.py index c6198401..0dcf80db 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -85,7 +85,7 @@ class TestSetupReadline(unittest.TestCase): } # There are quite a few differences, because both Windows and Linux # (posix and nt) librariesare included. - assert len(difference) < 15 + assert len(difference) < 30 def test_local_import(self): s = 'import test.test_utils'