Skip to content

Commit f1fea49

Browse files
committed
Update test_utils.py
1 parent a3588e0 commit f1fea49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def checkFilePermissions(dir_path):
9696
path = os.path.join(dir_path, file)
9797
if os.path.isfile(path):
9898
permission = oct(os.stat(path).st_mode)
99-
if sys.version_info >= (2, 7, 9):
99+
if sys.version_info > (2, 7, 9):
100100
self.assertEqual(permission, '0o100644')
101101
else :
102102
self.assertEqual(permission, '0100644')

0 commit comments

Comments
 (0)