aboutsummaryrefslogtreecommitdiff
path: root/test/unit/proj_angular_io_test.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-04-14 12:51:13 +0200
committerEven Rouault <even.rouault@spatialys.com>2020-04-14 12:51:13 +0200
commit5b017a8a78acc1f8b086ae339ecec257ee9d9684 (patch)
treec6cb9ff111ca75563454727e2cdd330e54153309 /test/unit/proj_angular_io_test.cpp
parent031b6ab95e4bedbf2f8f5d55407562b2b69ce98f (diff)
downloadPROJ-5b017a8a78acc1f8b086ae339ecec257ee9d9684.tar.gz
PROJ-5b017a8a78acc1f8b086ae339ecec257ee9d9684.zip
code format fix [skip ci]
Diffstat (limited to 'test/unit/proj_angular_io_test.cpp')
-rw-r--r--test/unit/proj_angular_io_test.cpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/test/unit/proj_angular_io_test.cpp b/test/unit/proj_angular_io_test.cpp
index 30eae298..6a32c8a6 100644
--- a/test/unit/proj_angular_io_test.cpp
+++ b/test/unit/proj_angular_io_test.cpp
@@ -100,12 +100,10 @@ TEST(AngularUnits, Pipelines3) {
TEST(AngularUnits, Degrees) {
auto ctx = proj_context_create();
- auto P = proj_create(
- ctx,
- "+proj=pipeline "
- "+step +inv +proj=utm +zone=32 +ellps=GRS80 "
- "+step +proj=unitconvert +xy_in=rad +xy_out=deg "
- );
+ auto P =
+ proj_create(ctx, "+proj=pipeline "
+ "+step +inv +proj=utm +zone=32 +ellps=GRS80 "
+ "+step +proj=unitconvert +xy_in=rad +xy_out=deg ");
EXPECT_FALSE(proj_degree_input(P, PJ_FWD));
EXPECT_TRUE(proj_degree_input(P, PJ_INV));
@@ -114,7 +112,6 @@ TEST(AngularUnits, Degrees) {
proj_destroy(P);
proj_context_destroy(ctx);
-
}
} // namespace