summaryrefslogtreecommitdiffstats
path: root/java/test/TestH5P.java
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2019-04-05 15:23:05 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2019-04-05 15:23:05 (GMT)
commit9e934e75fa9a66bdd95fd3656ca0c19f910123c7 (patch)
treecd279da2c659b3e133a30e07703b0813c168e602 /java/test/TestH5P.java
parent87ddba868fdf0e14d004a697e09c12d0ca949b67 (diff)
parent0073f198978dea0116bd74816b3119dfeb09144b (diff)
downloadhdf5-9e934e75fa9a66bdd95fd3656ca0c19f910123c7.zip
hdf5-9e934e75fa9a66bdd95fd3656ca0c19f910123c7.tar.gz
hdf5-9e934e75fa9a66bdd95fd3656ca0c19f910123c7.tar.bz2
Merge pull request #1639 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/add_v112_version_bounds to develop
* commit '0073f198978dea0116bd74816b3119dfeb09144b': Set V112 as the latest format and extend the arrays of version bounds.
Diffstat (limited to 'java/test/TestH5P.java')
-rw-r--r--java/test/TestH5P.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/TestH5P.java b/java/test/TestH5P.java
index 981f34e..e46ed48 100644
--- a/java/test/TestH5P.java
+++ b/java/test/TestH5P.java
@@ -214,7 +214,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_V110, HDF5Constants.H5F_LIBVER_V110+1);
+ H5.H5Pset_libver_bounds(fapl_id, HDF5Constants.H5F_LIBVER_V112, HDF5Constants.H5F_LIBVER_V112+1);
}
@Test