summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2008-09-22 15:03:36 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2008-09-22 15:03:36 (GMT)
commit0402e025278dbd5ac463ce27805231d5302def1d (patch)
tree7abb182a31d03250ae983af7f1f6c51ec28a5404
parent6d28e06f30587202147f6ae31b658a5021adf2a0 (diff)
downloadhdf5-0402e025278dbd5ac463ce27805231d5302def1d.zip
hdf5-0402e025278dbd5ac463ce27805231d5302def1d.tar.gz
hdf5-0402e025278dbd5ac463ce27805231d5302def1d.tar.bz2
[svn-r15673] Description:
Changed the error check string to match the function being called, changed the string H5Sselect_all to H5Sselect_none
-rw-r--r--test/tselect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tselect.c b/test/tselect.c
index 23afc46..0ac5e60 100644
--- a/test/tselect.c
+++ b/test/tselect.c
@@ -4570,7 +4570,7 @@ test_select_combine(void)
none_id=H5Scopy(base_id);
CHECK(none_id, FAIL, "H5Scopy");
error=H5Sselect_none(none_id);
- CHECK(error, FAIL, "H5Sselect_all");
+ CHECK(error, FAIL, "H5Sselect_none");
sel_type=H5Sget_select_type(none_id);
VERIFY(sel_type, H5S_SEL_NONE, "H5Sget_select_type");