Skip to content

Commit

Permalink
Update FunctionalTestsBandtrim.cpp
Browse files Browse the repository at this point in the history
Minor documentation change.
  • Loading branch information
kledmundson authored Aug 5, 2024
1 parent 3c0a5ce commit 5a42be4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions isis/tests/FunctionalTestsBandtrim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ TEST_F(DefaultCube, FunctionalTestBandtrimDefault) {
/**
* BandtrimOneBand Test
*
* BandtrimDefault test given a single 5x5 input cube with 1 band.
* BandtrimOneBand test given a single 5x5 input cube with 1 band.
* The four pixels in the upper left corner are set to Isis::Null
* as below. N implies a Null pixel.
*
Expand All @@ -148,7 +148,7 @@ TEST_F(DefaultCube, FunctionalTestBandtrimOneBand) {
resizeCube(5, 5, 1);

// set 4 pixel block in upper left corner to Isis::Null
Brick b(1, 1, 1, testCube->pixelType()); // create buffer of size 4 pixels
Brick b(1, 1, 1, testCube->pixelType()); // create buffer of size 1 pixels
b.SetBasePosition(1, 1, 1);
b[0] = Isis::Null;
testCube->write(b);
Expand Down

0 comments on commit 5a42be4

Please sign in to comment.