Correct java test dimension (#3482)

This commit is contained in:
Allen Byrne
2023-09-01 10:52:24 -07:00
committed by GitHub
parent 0b24f40b0f
commit 80fe48f2d3
2 changed files with 2 additions and 2 deletions
+1 -1
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);
+1 -1
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);