From e7feeef64e9ef4a0e543afd13c9ed72decdcc533 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 15 Apr 2020 09:50:36 +0200 Subject: [PATCH] Inc difference limit in TestSetupReadline::test_import for py3.8 Python 3.8 on Linux has 21 differences which exceed the current limit. Increase it to 22. --- 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 e91eb62d..085b9a1f 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -84,7 +84,7 @@ class TestSetupReadline(unittest.TestCase): } # There are quite a few differences, because both Windows and Linux # (posix and nt) librariesare included. - assert len(difference) < 20 + assert len(difference) < 22 def test_local_import(self): s = 'import test.test_utils'