summaryrefslogtreecommitdiffstats
path: root/test/gheap.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 14:31:56 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:31:56 (GMT)
commit7a44581a84778a1346a2fd5b6cca7d9db905a321 (patch)
tree44ea9c2d1b471eb227698abe8499c34cfa6d47d2 /test/gheap.c
parent622fcbd13881fbc58bbeaed3062583b759f5e864 (diff)
downloadhdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.zip
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.gz
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.bz2
Rename HDassert() to assert() (#3191)
* Change HDassert to assert * Fix bin/make_err
Diffstat (limited to 'test/gheap.c')
-rw-r--r--test/gheap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gheap.c b/test/gheap.c
index f8766df..cca5289 100644
--- a/test/gheap.c
+++ b/test/gheap.c
@@ -517,8 +517,8 @@ test_ooo_indices(hid_t fapl)
}
/* The indices should have "wrapped around" on the last iteration */
- HDassert(obj[534].idx == 65535);
- HDassert(obj[535].idx == 1);
+ assert(obj[534].idx == 65535);
+ assert(obj[535].idx == 1);
/* Reopen the file */
if (H5Fclose(file) < 0)