Skip to content

Commit

Permalink
Make the 2d multidim test exercise itself harder
Browse files Browse the repository at this point in the history
It looks like I had left in a very small plane size that I had
used for debugging.
  • Loading branch information
bdezonia committed Jul 31, 2023
1 parent 00b47ac commit 2a434c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions swig/java/apps/GDALTestMultiDim.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,7 @@ private static void test2d() {

ExtendedDataType dt = ExtendedDataType.Create(gdalconst.GDT_Int16);

//long[] sizes = new long[]{10,6};
long[] sizes = new long[]{2,2};
long[] sizes = new long[]{7,23};

Dimension[] inDims = new Dimension[sizes.length];

Expand Down

0 comments on commit 2a434c7

Please sign in to comment.