Chnage values so test will fail when new latest is added

This commit is contained in:
Allen Byrne
2018-03-15 14:28:36 -05:00
parent fe22bb8e44
commit b2d739ef39

View File

@@ -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