aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-02-28 16:05:56 +0100
committerEven Rouault <even.rouault@spatialys.com>2020-02-28 16:05:56 +0100
commite81f938f7c43a9209da74d0ec471a2ed9f08bfb0 (patch)
treeaff918b5e1051bbac4965b57c30791d50c32966a
parentfb87c671f11b5a3a41828727a8b57f6c8397fc79 (diff)
downloadPROJ-e81f938f7c43a9209da74d0ec471a2ed9f08bfb0.tar.gz
PROJ-e81f938f7c43a9209da74d0ec471a2ed9f08bfb0.zip
Formatting fix
-rw-r--r--test/unit/test_factory.cpp8
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);
}