From c0ac895d77e823fe9a9458d013eb0f6378f39060 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Thu, 17 Jan 2019 17:01:20 +0100 Subject: Remove proj_create_from_proj_string() and proj_create_from_user_input(), and make proj_create() do more or less what proj_create_from_user_input() did before (fixes #1214) --- test/unit/pj_transform_test.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'test/unit/pj_transform_test.cpp') diff --git a/test/unit/pj_transform_test.cpp b/test/unit/pj_transform_test.cpp index 22f7afca..9d8439ee 100644 --- a/test/unit/pj_transform_test.cpp +++ b/test/unit/pj_transform_test.cpp @@ -572,6 +572,7 @@ TEST(pj_transform_test, init_epsg) { auto src = pj_init_plus("+init=epsg:4326"); ASSERT_TRUE(src != nullptr); auto dst = pj_init_plus("+init=epsg:32631"); + ASSERT_TRUE(dst != nullptr); double x = 3 * DEG_TO_RAD; double y = 0 * DEG_TO_RAD; EXPECT_EQ(pj_transform(src, dst, 1, 0, &x, &y, nullptr), 0); -- cgit v1.2.3