Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhroom committed Sep 4, 2024
1 parent 4a297aa commit 45f292b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testControlsClass.m
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ function setResampleMinAngle(value)

function testResampleNPoints(testCase)
% test if set.resampleNPoints is working
testcase.controls.resampleNPoints = 10;
testcase.verifyEqual(testcase.controls.resampleNPoints, 10, 'set.resampleNPoints method is not working')
testCase.controls.resampleNPoints = 10;
testCase.verifyEqual(testcase.controls.resampleNPoints, 10, 'set.resampleNPoints method is not working')
% bad option
testCase.verifyError(@() setResampleNPoints('ab'), exceptions.invalidType.errorID);
testCase.verifyError(@() setResampleNPoints(0.5), exceptions.invalidType.errorID);
Expand Down

0 comments on commit 45f292b

Please sign in to comment.