diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-01-22 19:47:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-22 19:47:18 +0100 |
| commit | f0197a532b9ed0facafa0be135c208d5b570ac57 (patch) | |
| tree | 5ba1c8d7aefbbfc40a80834d6ba5a772e9bc04b3 /test/unit/test_factory.cpp | |
| parent | 8ff49e280c446421ca4669e851687847b0da7c9a (diff) | |
| parent | 7e11edaa2d1abc09478f3bd3fb9926cb0ef3fdda (diff) | |
| download | PROJ-f0197a532b9ed0facafa0be135c208d5b570ac57.tar.gz PROJ-f0197a532b9ed0facafa0be135c208d5b570ac57.zip | |
Merge pull request #1233 from rouault/fix_1232
Coordinate operation computation with boundcrs / wktext: drop useless early bindins terms in generated pipeline (fixes #1232)
Diffstat (limited to 'test/unit/test_factory.cpp')
| -rw-r--r-- | test/unit/test_factory.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/unit/test_factory.cpp b/test/unit/test_factory.cpp index ea469c8a..81f745f5 100644 --- a/test/unit/test_factory.cpp +++ b/test/unit/test_factory.cpp @@ -2324,8 +2324,7 @@ TEST_F(FactoryWithTmpDatabase, custom_projected_crs) { EXPECT_EQ(crs->identifiers().size(), 1); EXPECT_EQ(crs->derivingConversion()->targetCRS().get(), crs.get()); EXPECT_EQ(crs->exportToPROJString(PROJStringFormatter::create().get()), - "+proj=mbt_s +unused_flag +datum=WGS84 +units=m +no_defs " - "+type=crs"); + "+proj=mbt_s +datum=WGS84 +units=m +no_defs +type=crs"); EXPECT_TRUE(crs->canonicalBoundCRS() == nullptr); } { @@ -2334,8 +2333,7 @@ TEST_F(FactoryWithTmpDatabase, custom_projected_crs) { EXPECT_EQ(crs->identifiers().size(), 1); EXPECT_EQ(crs->derivingConversion()->targetCRS().get(), crs.get()); EXPECT_EQ(crs->exportToPROJString(PROJStringFormatter::create().get()), - "+proj=mbt_s +unused_flag +datum=WGS84 +units=m +no_defs " - "+type=crs"); + "+proj=mbt_s +datum=WGS84 +units=m +no_defs +type=crs"); EXPECT_TRUE(crs->canonicalBoundCRS() != nullptr); } |
