aboutsummaryrefslogtreecommitdiff
path: root/test/unit/test_operation.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@mines-paris.org>2019-02-21 17:42:41 +0100
committerGitHub <noreply@github.com>2019-02-21 17:42:41 +0100
commitbbf31d0e1052a40269547d0dec5d63a7e0534ccc (patch)
treeb48ac00785b9107072de08b2d591e62c3143fe32 /test/unit/test_operation.cpp
parentf5a78058c9d8e633e34e6b0979c79cb7d17b1a93 (diff)
parent287230f86d89a26574c777bb5e5b498084a84897 (diff)
downloadPROJ-bbf31d0e1052a40269547d0dec5d63a7e0534ccc.tar.gz
PROJ-bbf31d0e1052a40269547d0dec5d63a7e0534ccc.zip
Merge pull request #1280 from rouault/SWEN17_RH2000_gtx
proj.db: add missing custom entries for vertical transform and fix a few wrong ones
Diffstat (limited to 'test/unit/test_operation.cpp')
-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());
}