Skip to content

Commit 6be1a79

Browse files
authored
fix TypeError: '<' not supported between instances of 'int' and 'tuple'
1 parent 68f9650 commit 6be1a79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/framework/easyblock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1970,7 +1970,7 @@ def test_fetch_sources_git(self):
19701970
self.assertEqual(eb.src[0]['cmd'], None)
19711971

19721972
reference_checksum = "00000000"
1973-
if sys.version_info[0] < (3, 9):
1973+
if sys.version_info < (3, 9):
19741974
# checksums of tarballs made by EB cannot be reliably checked prior to Python 3.9
19751975
# due to changes introduced in python/cpython#90021
19761976
reference_checksum = None

0 commit comments

Comments
 (0)