diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-10-27 20:59:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-27 20:59:29 +0100 |
| commit | e2d5b13f3442a8e88093a9d68e1be550194a4d77 (patch) | |
| tree | 31789cfd11ea72eb9e5fc07eb2b2ac0839cfd5fd /test/unit/test_c_api.cpp | |
| parent | e7dff6e3a9895af20b3d02337299d5f05c2ea4bc (diff) | |
| parent | 46c6ddf84defeb4ae855285da4416dff7178cacc (diff) | |
| download | PROJ-e2d5b13f3442a8e88093a9d68e1be550194a4d77.tar.gz PROJ-e2d5b13f3442a8e88093a9d68e1be550194a4d77.zip | |
Merge pull request #1696 from rouault/modify_concatenated_operation_structure
Database: add an auxiliary concatenated_operation_step table to allow arbitrary number of steps (fixes #1632)
Diffstat (limited to 'test/unit/test_c_api.cpp')
| -rw-r--r-- | test/unit/test_c_api.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test_c_api.cpp b/test/unit/test_c_api.cpp index d8968e97..8ac5a511 100644 --- a/test/unit/test_c_api.cpp +++ b/test/unit/test_c_api.cpp @@ -1344,7 +1344,7 @@ TEST_F(CApi, proj_create_operations) { ASSERT_NE(res, nullptr); ObjListKeeper keeper_res(res); - EXPECT_EQ(proj_list_get_count(res), 8); + EXPECT_EQ(proj_list_get_count(res), 10); EXPECT_EQ(proj_list_get(m_ctxt, res, -1), nullptr); EXPECT_EQ(proj_list_get(m_ctxt, res, proj_list_get_count(res)), nullptr); |
