Skip to content

Commit 034fb90

Browse files
committed
fixed tests again
1 parent 47f0efa commit 034fb90

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
-24 Bytes
Binary file not shown.

tests/testControlsClass.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function testResampleNPoints(testCase)
7878
testCase.verifyEqual(testCase.controls.resampleNPoints, 10, 'set.resampleNPoints method is not working')
7979
% bad option
8080
testCase.verifyError(@() setResampleNPoints('ab'), exceptions.invalidType.errorID);
81-
testCase.verifyError(@() setResampleNPoints(0.5), exceptions.invalidType.errorID);
81+
testCase.verifyError(@() setResampleNPoints(0.5), exceptions.invalidValue.errorID);
8282
testCase.verifyError(@() setResampleNPoints(-1), exceptions.invalidValue.errorID);
8383
function setResampleNPoints(value)
8484
testCase.controls.resampleNPoints = value;

0 commit comments

Comments
 (0)