Correct java test dimension (#3482)

This commit is contained in:
Allen Byrne 2023-09-01 12:52:24 -05:00 committed by GitHub
parent 0b24f40b0f
commit 80fe48f2d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ public class TestH5Arw {
@Test
public void testH5Aread_32bit_ints()
{
int[][] attr_data = new int[DIM_X][DIM16_Y];
int[][] attr_data = new int[DIM_X][DIM32_Y];
try {
openH5file(H5_INTS_FILE, DATASETU32);

View File

@ -226,7 +226,7 @@ public class TestH5Drw {
@Test
public void testH5Dread_32bit_ints()
{
int[][] dset_data = new int[DIM_X][DIM16_Y];
int[][] dset_data = new int[DIM_X][DIM32_Y];
try {
openH5file(H5_INTS_FILE, DATASETU32);