diff options
-rw-r--r-- | hl/test/test_dset_append.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/test/test_dset_append.c b/hl/test/test_dset_append.c index 9d466b5..8bb4f84 100644 --- a/hl/test/test_dset_append.c +++ b/hl/test/test_dset_append.c @@ -691,7 +691,7 @@ test_dataset_append_BUG1(hid_t fid) FAIL_STACK_ERROR; /* Open the dataset again */ - if((did = H5Dopen(fid, DBUGNAME1, H5P_DEFAULT)) < 0) + if((did = H5Dopen2(fid, DBUGNAME1, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR; /* Read the dataset */ @@ -853,7 +853,7 @@ test_dataset_append_BUG2(hid_t fid) FAIL_STACK_ERROR; /* Open the dataset again */ - if((did = H5Dopen(fid, DBUGNAME2, H5P_DEFAULT)) < 0) + if((did = H5Dopen2(fid, DBUGNAME2, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR; /* Read the dataset */ |