summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-01-20 10:36:34 -0500
committerJacob Walls <jacobtylerwalls@gmail.com>2026-01-20 11:54:07 -0500
commit3851601b2e080df34fb9227fe5d2fd43af604263 (patch)
treed03c372f98923e5622b6e0c6ad6bf97719d162c7
parente083c62f51f408aaacbf55684daf83c78d0d1bc1 (diff)
Refs #36382 -- Fixed GDAL_VERSION comparison in gdal_tests.
Tests regression in 0d31ca98830542088299d2078402891d08cc3a65.
-rw-r--r--tests/gis_tests/gdal_tests/test_driver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gis_tests/gdal_tests/test_driver.py b/tests/gis_tests/gdal_tests/test_driver.py
index 71ff5a5aab..5c3c0e5c8d 100644
--- a/tests/gis_tests/gdal_tests/test_driver.py
+++ b/tests/gis_tests/gdal_tests/test_driver.py
@@ -9,7 +9,7 @@ valid_drivers = (
"MapInfo File",
"S57",
"DGN",
- "Memory" if GDAL_VERSION <= (3, 10) else "MEM",
+ "Memory" if GDAL_VERSION[:2] <= (3, 10) else "MEM",
"CSV",
"GML",
"KML",