Skip to content

Commit 240df4f

Browse files
committed
Updated to match updating GDAL to 3.10 and proj7 to proj9.
1 parent d48a6ec commit 240df4f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

MapWinGisTests-net6/MapWinGisTests/UnitTests/GlobalSettingsTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void GlobalSettingsProjPathTest()
6060
var projPath = _gs.ProjPath;
6161
_testOutputHelper.WriteLine("projPath: " + projPath);
6262
projPath.ShouldNotBeNullOrEmpty("ProjPath is not set");
63-
projPath.EndsWith("\\proj7\\share\\").ShouldBeTrue();
63+
projPath.EndsWith("\\proj9\\share\\").ShouldBeTrue();
6464
// Change:
6565
var newpath = Path.Combine(Path.GetTempPath(), "new-proj-Воздух");
6666
_testOutputHelper.WriteLine(newpath);
@@ -79,7 +79,7 @@ public void GlobalSettingsGdalVersionTest()
7979
var gdalVersion = _gs.GdalVersion;
8080
_testOutputHelper.WriteLine(gdalVersion);
8181
gdalVersion.ShouldNotBeNullOrEmpty("GdalVersion is not set");
82-
gdalVersion.StartsWith("GDAL 3.5").ShouldBeTrue();
82+
gdalVersion.StartsWith("GDAL 3.10").ShouldBeTrue();
8383
// Change:
8484
// GdalVersion is read-only
8585
}

0 commit comments

Comments
 (0)