Skip to content

Commit ebf0198

Browse files
committed
add another tolerance to decimal values in wt.test.SliderSpinner
1 parent a66ec2e commit ebf0198

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/+wt/+test/SliderSpinner.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ function testSlider(testCase)
212212
expValue = 91.24;
213213
testCase.drag(sliderControl,14,newValue);
214214
testCase.verifyControlValues(expValue);
215-
testCase.verifyEqual(testCase.Widget.Value, expValue);
215+
testCase.verifyEqual(testCase.Widget.Value, expValue, 'AbsTol', 1e-5);
216216

217217
end %function
218218

0 commit comments

Comments
 (0)