summaryrefslogtreecommitdiffstats
path: root/java/test
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-04-05 15:36:43 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-04-05 15:36:43 (GMT)
commit2e2301e683f0aadf3541b596416d04bbc7d690c0 (patch)
treefae1e632a4ad552af3b34dd8f348daf7352c8fb7 /java/test
parenteb3db27532ade32e3c9f32e69814e789871d2ddd (diff)
parent9e934e75fa9a66bdd95fd3656ca0c19f910123c7 (diff)
downloadhdf5-2e2301e683f0aadf3541b596416d04bbc7d690c0.zip
hdf5-2e2301e683f0aadf3541b596416d04bbc7d690c0.tar.gz
hdf5-2e2301e683f0aadf3541b596416d04bbc7d690c0.tar.bz2
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit '9e934e75fa9a66bdd95fd3656ca0c19f910123c7': Set V112 as the latest format and extend the arrays of version bounds.
Diffstat (limited to 'java/test')
-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