diff options
| author | Larry Knox <lrknox@hdfgroup.org> | 2017-03-21 17:07:42 (GMT) |
|---|---|---|
| committer | Larry Knox <lrknox@hdfgroup.org> | 2017-03-21 17:07:42 (GMT) |
| commit | f09abb150e965200ac1b06a5bc4b374d8969776c (patch) | |
| tree | aaacae8b1bad787d0e340772ced6839fc612b935 /java/test/TestH5.java | |
| parent | 2fe63888b73c7d857bdcd7e67af3e7c3d13018cf (diff) | |
| parent | fa5ca5272d7aa6f25656541b72a24697b36dd52b (diff) | |
| download | hdf5-f09abb150e965200ac1b06a5bc4b374d8969776c.zip hdf5-f09abb150e965200ac1b06a5bc4b374d8969776c.tar.gz hdf5-f09abb150e965200ac1b06a5bc4b374d8969776c.tar.bz2 | |
Merge pull request #356 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop
* commit 'fa5ca5272d7aa6f25656541b72a24697b36dd52b':
Remove extra space added by h5vers to version string in H5.java, which then failed to match the pattern after the first run.
Remove incorrect " marks added to java files by bin/h5vers. Pull version from configure for version test in h5repack_plugin.sh.in
Diffstat (limited to 'java/test/TestH5.java')
| -rw-r--r-- | java/test/TestH5.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/TestH5.java b/java/test/TestH5.java index 173af8f..4c84988 100644 --- a/java/test/TestH5.java +++ b/java/test/TestH5.java @@ -164,7 +164,7 @@ public class TestH5 { */ @Test public void testH5get_libversion() { - int libversion[] = { "1, 11, 0" }; + int libversion[] = { 1, 11, 0 }; try { H5.H5get_libversion(libversion); @@ -186,7 +186,7 @@ public class TestH5 { */ @Test public void testH5check_version() { - "int majnum = 1, minnum = 10, relnum = 1"; + int majnum = 1, minnum = 11, relnum = 0; try { H5.H5check_version(majnum, minnum, relnum); |
