diff options
Diffstat (limited to 'test/unit/test_c_api.cpp')
| -rw-r--r-- | test/unit/test_c_api.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/test/unit/test_c_api.cpp b/test/unit/test_c_api.cpp index 600f47ff..4898345c 100644 --- a/test/unit/test_c_api.cpp +++ b/test/unit/test_c_api.cpp @@ -5033,13 +5033,12 @@ TEST_F(CApi, proj_create_vertical_crs_ex_with_geog_crs) { auto name = proj_get_name(P); ASSERT_TRUE(name != nullptr); - EXPECT_EQ( - name, - std::string("Inverse of UTM zone 11N + " - "Ballpark geographic offset from NAD83(2011) to WGS 84 + " - "Conversion from myVertCRS to myVertCRS (metre) + " - "Transformation from myVertCRS (metre) to WGS 84 + " - "Ballpark geographic offset from WGS 84 to NAD83(2011)")); + EXPECT_EQ(name, + std::string("Inverse of UTM zone 11N + " + "NAD83(2011) to WGS 84 (1) + " + "Conversion from myVertCRS to myVertCRS (metre) + " + "Transformation from myVertCRS (metre) to WGS 84 + " + "Inverse of NAD83(2011) to WGS 84 (1)")); auto proj_5 = proj_as_proj_string(m_ctxt, P, PJ_PROJ_5, nullptr); ASSERT_NE(proj_5, nullptr); |
