diff options
| -rw-r--r-- | test/unit/test_factory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/test_factory.cpp b/test/unit/test_factory.cpp index 5cf45d1a..4f6f2c93 100644 --- a/test/unit/test_factory.cpp +++ b/test/unit/test_factory.cpp @@ -2755,10 +2755,10 @@ TEST(factory, createObjectsFromName) { { auto res = factoryEPSG->createObjectsFromName( "WGS84", {AuthorityFactory::ObjectType::GEOGRAPHIC_2D_CRS}, true); - EXPECT_EQ(res.size(), - 8U); // EPSG:4326 and the 6 WGS84 realizations - // and EPSG:7881 'Tritan St. Helena'' whose alias is - // 'WGS 84 Tritan St. Helena' + // EPSG:4326 and the 6 WGS84 realizations + // and EPSG:7881 'Tritan St. Helena'' whose alias is + // 'WGS 84 Tritan St. Helena' + EXPECT_EQ(res.size(), 8U); if (!res.empty()) { EXPECT_EQ(res.front()->getEPSGCode(), 4326); } |
