Skip to content

Commit

Permalink
BUG: New test for 3D support
Browse files Browse the repository at this point in the history
A newly added test that exercises 3D
support did not initialize the size
of the image in the 3rd dimension.

Changed 2D hard coded size to fill
in the size in all dimensions.
  • Loading branch information
hjmjohnson committed Dec 14, 2020
1 parent 519f1bd commit bd7740c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ class EigenAnalysis2DImageFilterTester

// Define their size, and start index
mySizeType size;
size[0] = 2;
size[1] = 2;
size.Fill(2);

myIndexType start;
start.Fill(0);
Expand Down

0 comments on commit bd7740c

Please sign in to comment.