Skip to content

Commit 49c9598

Browse files
committed
fix: wrong Python version specified in skipIf decorator
1 parent 8740688 commit 49c9598

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_07_drag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .util import BaseTestInterface, mock_filedialog, mock_warning_window
88

99

10-
@skipIf(system() == 'Windows' and int(python_version_tuple()[1]) < 8,
10+
@skipIf(system() == 'Windows' and int(python_version_tuple()[1]) < 9,
1111
"For some reason, this test fails on Windows with a Python version "
1212
"anterior to 3.8. It was manually checked that the drag feature was "
1313
"working as expected in the interface nevertheless.")

0 commit comments

Comments
 (0)