diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-03-15 19:28:36 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-03-15 19:28:36 (GMT) |
commit | b2d739ef39633ed688ce855fba72aa3ddcbaf43d (patch) | |
tree | b388cd7a70b4225acc8dd76416087b66996f3969 | |
parent | fe22bb8e44b89468849f5a70f014215a459c9d5b (diff) | |
download | hdf5-b2d739ef39633ed688ce855fba72aa3ddcbaf43d.zip hdf5-b2d739ef39633ed688ce855fba72aa3ddcbaf43d.tar.gz hdf5-b2d739ef39633ed688ce855fba72aa3ddcbaf43d.tar.bz2 |
Chnage values so test will fail when new latest is added
-rw-r--r-- | java/test/TestH5P.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/TestH5P.java b/java/test/TestH5P.java index f713063..d69403c 100644 --- a/java/test/TestH5P.java +++ b/java/test/TestH5P.java @@ -213,7 +213,7 @@ public class TestH5P { @Test(expected = HDF5FunctionArgumentException.class) public void testH5Pset_libver_bounds_invalidhigh() throws Throwable { - H5.H5Pset_libver_bounds(fapl_id, HDF5Constants.H5F_LIBVER_LATEST, 5); + H5.H5Pset_libver_bounds(fapl_id, HDF5Constants.H5F_LIBVER_V110, HDF5Constants.H5F_LIBVER_LATEST+1); } @Test |