aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-02-21 13:48:28 +0100
committerEven Rouault <even.rouault@spatialys.com>2019-02-21 13:48:28 +0100
commit287230f86d89a26574c777bb5e5b498084a84897 (patch)
treeb48ac00785b9107072de08b2d591e62c3143fe32 /test
parent34168532d3f3773e1afa2e560bdfba9bd369a0aa (diff)
downloadPROJ-287230f86d89a26574c777bb5e5b498084a84897.tar.gz
PROJ-287230f86d89a26574c777bb5e5b498084a84897.zip
Transformation: reintroduce the term of 'Null geographic offset' for transformations between geographic CRS of same datum (typically 3D to 2D)
Diffstat (limited to 'test')
-rw-r--r--test/unit/test_operation.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/unit/test_operation.cpp b/test/unit/test_operation.cpp
index 112b46e3..e71ac716 100644
--- a/test/unit/test_operation.cpp
+++ b/test/unit/test_operation.cpp
@@ -4507,8 +4507,7 @@ TEST(operation, geogCRS_to_geogCRS_noop) {
auto op = CoordinateOperationFactory::create()->createOperation(
GeographicCRS::EPSG_4326, GeographicCRS::EPSG_4326);
ASSERT_TRUE(op != nullptr);
- EXPECT_EQ(op->nameStr(),
- "Ballpark geographic offset from WGS 84 to WGS 84");
+ EXPECT_EQ(op->nameStr(), "Null geographic offset from WGS 84 to WGS 84");
EXPECT_EQ(op->exportToPROJString(PROJStringFormatter::create().get()), "");
EXPECT_EQ(op->inverse()->nameStr(), op->nameStr());
}