summaryrefslogtreecommitdiffstats
path: root/test/lheap.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-07-21 16:58:13 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-07-21 16:58:13 (GMT)
commit35de6099e0c9a785d534044655c47aa33cd766b5 (patch)
tree800d4b6280afcec6ba3e41e252432ffab4376fd4 /test/lheap.c
parent52ceb04b1f1fd6598a8e7b2f7083e59a969e50a5 (diff)
downloadhdf5-35de6099e0c9a785d534044655c47aa33cd766b5.zip
hdf5-35de6099e0c9a785d534044655c47aa33cd766b5.tar.gz
hdf5-35de6099e0c9a785d534044655c47aa33cd766b5.tar.bz2
[svn-r25452] realign tests with trunk.
Diffstat (limited to 'test/lheap.c')
-rw-r--r--test/lheap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lheap.c b/test/lheap.c
index 277c3da..51ae25b 100644
--- a/test/lheap.c
+++ b/test/lheap.c
@@ -79,7 +79,7 @@ main(void)
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0)
goto error;
- if(NULL == (f = (H5F_t *)H5I_object_verify(file, H5I_FILE))) {
+ if(NULL == (f = (H5F_t *)H5I_object(file))) {
H5_FAILED();
H5Eprint2(H5E_DEFAULT, stdout);
goto error;
@@ -127,7 +127,7 @@ main(void)
TESTING("local heap read");
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
if((file = H5Fopen(filename, H5F_ACC_RDONLY, fapl)) < 0) goto error;
- if(NULL == (f = (H5F_t *)H5I_object_verify(file, H5I_FILE))) {
+ if(NULL == (f = (H5F_t *)H5I_object(file))) {
H5_FAILED();
H5Eprint2(H5E_DEFAULT, stdout);
goto error;