summaryrefslogtreecommitdiffstats
path: root/java/test
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2021-12-06 16:39:22 (GMT)
committerGitHub <noreply@github.com>2021-12-06 16:39:22 (GMT)
commit65b1670861c62228cc68f98d4356edd180cfcb1f (patch)
treeefed6221a60ef59c96975e7af0b8fe15af772203 /java/test
parentad953381fd3bc980547cf1594dbb5be98a316477 (diff)
downloadhdf5-65b1670861c62228cc68f98d4356edd180cfcb1f.zip
hdf5-65b1670861c62228cc68f98d4356edd180cfcb1f.tar.gz
hdf5-65b1670861c62228cc68f98d4356edd180cfcb1f.tar.bz2
Merge branch 'selection_io' into selection_io_with_subfiling_vfd (#1265)
Diffstat (limited to 'java/test')
-rw-r--r--java/test/TestH5.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/TestH5.java b/java/test/TestH5.java
index 1f298f3..1f81f09 100644
--- a/java/test/TestH5.java
+++ b/java/test/TestH5.java
@@ -287,7 +287,7 @@ public class TestH5 {
*/
@Test
public void testH5get_libversion() {
- int libversion[] = { 1, 13, 0 };
+ int libversion[] = { 1, 13, 1 };
try {
H5.H5get_libversion(libversion);
@@ -326,7 +326,7 @@ public class TestH5 {
*/
@Test
public void testH5check_version() {
- int majnum = 1, minnum = 13, relnum = 0;
+ int majnum = 1, minnum = 13, relnum = 1;
try {
H5.H5check_version(majnum, minnum, relnum);