From b9f8a7f52e900b7ca8e0adcc122d8a9da4eb9689 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 13 Dec 2019 12:28:03 +0100 Subject: [PATCH] Make sure that Python 2 passes a test on more systems --- 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 e9204515..3ac76389 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -80,7 +80,7 @@ class TestSetupReadline(unittest.TestCase): difference = { x for x in difference if all(not x.startswith('from os import ' + s) - for s in ['_', 'O_', 'EX_', 'MFD_', 'SF_']) + for s in ['_', 'O_', 'EX_', 'MFD_', 'SF_', 'ST_']) } # There are quite a few differences, because both Windows and Linux # (posix and nt) librariesare included.