Skip to content

Commit

Permalink
TST: Update unit test after b636bbe
Browse files Browse the repository at this point in the history
  • Loading branch information
jhabriel committed Sep 11, 2024
1 parent 9111a27 commit 419973b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_gmres_e.m
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ function test_number_of_input_arguments()
assert(matches(ME.message, msg));
end

% Error should be raised since 8 parameters are given
% Error should be raised since 9 parameters are given
try
gmres_e([], [], [], [], [], [], [], []);
gmres_e([], [], [], [], [], [], [], [], []);
catch ME
msg = "Too many input parameters.";
assert(matches(ME.message, msg));
Expand Down

0 comments on commit 419973b

Please sign in to comment.