Skip to content

Commit 4c31c39

Browse files
committed
test: fix code that does not run a test on 3.7
1 parent bf02f35 commit 4c31c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1300,7 +1300,7 @@ def testDictLoggerConfigViaJson(self):
13001300
# different versions of python have different errors
13011301
# (or no error for this case in 3.7)
13021302
# FIXME remove version check post 3.7 as minimum version
1303-
if sys.version_info > (3,7):
1303+
if sys.version_info >= (3, 8, 0):
13041304
with self.assertRaises(configuration.LoggingConfigError) as cm:
13051305
config = self.db.config.init_logging()
13061306

0 commit comments

Comments
 (0)