Skip to content

Commit

Permalink
regression_tests/Test_GetBrickletData.ipf: Check pixel size from wave…
Browse files Browse the repository at this point in the history
… note
  • Loading branch information
t-b committed Jun 17, 2021
1 parent 4e82e25 commit 4ee2d5f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion regression_tests/Test_GetBrickletData.ipf
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ static Function valid_pixelsizes()
CHECK(ItemsInList(S_waveNames) == 4) // we have four trace directions
variable j
for(j = 0; j < ItemsInList(S_waveNames); j+=1)
CHECK_WAVE($StringFromList(j, S_waveNames), NUMERIC_WAVE, minorType = DOUBLE_WAVE)
WAVE wv = $StringFromList(j, S_waveNames)
CHECK_WAVE(wv, NUMERIC_WAVE, minorType = DOUBLE_WAVE)
CHECK_EQUAL_VAR(NumberByKey("pixelSize", note(wv), "=", "\r"), i)
endfor
endfor
End
Expand Down

0 comments on commit 4ee2d5f

Please sign in to comment.