diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-05-15 11:58:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-15 11:58:05 +0200 |
| commit | 6c5164eb49bdb6fcc9bf976db33c1b0a4bf5d7ad (patch) | |
| tree | 30e995477bdeae2ccf9038dc6f2d0759c41f2447 /test/unit | |
| parent | 40bceca79f71d88fbc4953fa6c2bb6b6ed89c473 (diff) | |
| parent | 77a8a9e01c3cdfde0f8118fa9e72d899c51c154d (diff) | |
| download | PROJ-6c5164eb49bdb6fcc9bf976db33c1b0a4bf5d7ad.tar.gz PROJ-6c5164eb49bdb6fcc9bf976db33c1b0a4bf5d7ad.zip | |
Merge pull request #2223 from rouault/fix_2221
Avoid 2 warnings about missing database indices
Diffstat (limited to 'test/unit')
| -rw-r--r-- | test/unit/test_factory.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/test_factory.cpp b/test/unit/test_factory.cpp index aee2f572..e6cfa72b 100644 --- a/test/unit/test_factory.cpp +++ b/test/unit/test_factory.cpp @@ -2763,6 +2763,13 @@ TEST(factory, createObjectsFromName) { .size(), 3U); + EXPECT_EQ( + factory + ->createObjectsFromName( + "WGS 84", {AuthorityFactory::ObjectType::GEOCENTRIC_CRS}, false) + .size(), + 1U); + { auto res = factoryEPSG->createObjectsFromName( "WGS84", {AuthorityFactory::ObjectType::GEOGRAPHIC_2D_CRS}, true); |
