Skip to content

Commit 3851601

Browse files
Refs #36382 -- Fixed GDAL_VERSION comparison in gdal_tests.
Tests regression in 0d31ca9.
1 parent e083c62 commit 3851601

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/gis_tests/gdal_tests/test_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"MapInfo File",
1010
"S57",
1111
"DGN",
12-
"Memory" if GDAL_VERSION <= (3, 10) else "MEM",
12+
"Memory" if GDAL_VERSION[:2] <= (3, 10) else "MEM",
1313
"CSV",
1414
"GML",
1515
"KML",

0 commit comments

Comments
 (0)