summaryrefslogtreecommitdiffstats
path: root/test/th5o.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-05-18 13:00:54 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-05-18 13:00:54 (GMT)
commit194d647721cb4f71e6330d11c244b3d7db8309e7 (patch)
tree55d72d22a616dea80ae310113f6458517fc3e0e6 /test/th5o.c
parentab80cbadfd5d7a28e4cb37317e2535bde502626c (diff)
downloadhdf5-194d647721cb4f71e6330d11c244b3d7db8309e7.zip
hdf5-194d647721cb4f71e6330d11c244b3d7db8309e7.tar.gz
hdf5-194d647721cb4f71e6330d11c244b3d7db8309e7.tar.bz2
[svn-r27097] Fixed a typo in test/th5o.c that caused the wrong property list
ID to be checked. Tested on: h5committest
Diffstat (limited to 'test/th5o.c')
-rw-r--r--test/th5o.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/th5o.c b/test/th5o.c
index a470f4c..be3b4ab 100644
--- a/test/th5o.c
+++ b/test/th5o.c
@@ -669,7 +669,7 @@ test_h5o_plist(void)
gcpl = H5Gget_create_plist(grp);
CHECK(gcpl, FAIL, "H5Gget_create_plist");
tcpl = H5Tget_create_plist(dtype);
- CHECK(dcpl, FAIL, "H5Tget_create_plist");
+ CHECK(tcpl, FAIL, "H5Tget_create_plist");
dcpl = H5Dget_create_plist(dset);
CHECK(dcpl, FAIL, "H5Dget_create_plist");
@@ -719,7 +719,7 @@ test_h5o_plist(void)
gcpl = H5Gget_create_plist(grp);
CHECK(gcpl, FAIL, "H5Gget_create_plist");
tcpl = H5Tget_create_plist(dtype);
- CHECK(dcpl, FAIL, "H5Tget_create_plist");
+ CHECK(tcpl, FAIL, "H5Tget_create_plist");
dcpl = H5Dget_create_plist(dset);
CHECK(dcpl, FAIL, "H5Dget_create_plist");