aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2021-04-18 17:08:05 +0200
committerGitHub <noreply@github.com>2021-04-18 17:08:05 +0200
commitbd1d3d9a790266092dbbe3e440ebb00e2e25b700 (patch)
treea31f73d594d481cd5671942722a067223f5b13e4 /test
parentc70a7447c1f7ca71534b0b711150784aff5b8dbd (diff)
parent16c50fbe3333adcc900c13a9350069ff2e2b4f69 (diff)
downloadPROJ-bd1d3d9a790266092dbbe3e440ebb00e2e25b700.tar.gz
PROJ-bd1d3d9a790266092dbbe3e440ebb00e2e25b700.zip
Merge pull request #2677 from rouault/change_name_of_urn_combined_references
createFromUserInput(): change name of CRS built from URN combined references to match the convention of EPSG projected CRS
Diffstat (limited to 'test')
-rw-r--r--test/unit/test_io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test_io.cpp b/test/unit/test_io.cpp
index b7081c21..bfe863a3 100644
--- a/test/unit/test_io.cpp
+++ b/test/unit/test_io.cpp
@@ -10424,7 +10424,7 @@ TEST(io, createFromUserInput) {
dbContext);
auto crs = nn_dynamic_pointer_cast<ProjectedCRS>(obj);
ASSERT_TRUE(crs != nullptr);
- EXPECT_EQ(crs->nameStr(), "UTM zone 31N / WGS 84 (3D)");
+ EXPECT_EQ(crs->nameStr(), "WGS 84 (3D) / UTM zone 31N");
EXPECT_EQ(crs->baseCRS()->getEPSGCode(), 4979);
EXPECT_EQ(crs->coordinateSystem()->axisList().size(), 3U);
EXPECT_EQ(crs->derivingConversion()->getEPSGCode(), 16031);