diff options
| author | Javier Jimenez Shaw <j1@jimenezshaw.com> | 2021-04-20 20:41:28 +0200 |
|---|---|---|
| committer | Javier Jimenez Shaw <j1@jimenezshaw.com> | 2021-04-20 20:41:28 +0200 |
| commit | 11b422cbc7c58072f920a29535e172f9eabe0e8b (patch) | |
| tree | 1d228c795e814f21cc54e16de41cd66d727d0c28 /test/unit/test_c_api.cpp | |
| parent | 8d0c7cef4b5e9687382519400380847587edc6cb (diff) | |
| download | PROJ-11b422cbc7c58072f920a29535e172f9eabe0e8b.tar.gz PROJ-11b422cbc7c58072f920a29535e172f9eabe0e8b.zip | |
run reformat_cpp.sh to fix some leftovers
Diffstat (limited to 'test/unit/test_c_api.cpp')
| -rw-r--r-- | test/unit/test_c_api.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/unit/test_c_api.cpp b/test/unit/test_c_api.cpp index 964d25d9..fa69c9aa 100644 --- a/test/unit/test_c_api.cpp +++ b/test/unit/test_c_api.cpp @@ -3903,7 +3903,8 @@ TEST_F(CApi, proj_get_celestial_body_list_from_database) { { proj_celestial_body_list_destroy(nullptr); } { - auto list = proj_get_celestial_body_list_from_database(nullptr, nullptr, 0); + auto list = + proj_get_celestial_body_list_from_database(nullptr, nullptr, 0); ASSERT_NE(list, nullptr); ASSERT_NE(list[0], nullptr); ASSERT_NE(list[0]->auth_name, nullptr); @@ -3912,7 +3913,8 @@ TEST_F(CApi, proj_get_celestial_body_list_from_database) { } { int result_count = 0; - auto list = proj_get_celestial_body_list_from_database(nullptr, "ESRI", &result_count); + auto list = proj_get_celestial_body_list_from_database(nullptr, "ESRI", + &result_count); ASSERT_NE(list, nullptr); EXPECT_GT(result_count, 1); EXPECT_EQ(list[result_count], nullptr); |
