Skip to content

Commit 969e2fb

Browse files
Fix functional test order for 3.5 and earlier. (microsoft#5306)
(for microsoft#5299)
1 parent b25eeed commit 969e2fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pythonFiles/tests/testing_tools/adapter/test_functional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def fix_path(nodeid):
5555

5656

5757
def fix_test_order(tests):
58-
if sys.version_info > (3,):
58+
if sys.version_info >= (3, 6):
5959
return tests
6060
fixed = []
6161
curfile = None

0 commit comments

Comments
 (0)