From 5b017a8a78acc1f8b086ae339ecec257ee9d9684 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Tue, 14 Apr 2020 12:51:13 +0200 Subject: code format fix [skip ci] --- test/unit/proj_angular_io_test.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'test/unit/proj_angular_io_test.cpp') 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 -- cgit v1.2.3