Skip to content

Commit

Permalink
fix(tests): wrong test call and missing case
Browse files Browse the repository at this point in the history
the function name was wrong and missing a test
  • Loading branch information
ocehugo committed Jun 10, 2021
1 parent ffbbf69 commit 0eda60b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AutomaticQC/SpikeClassifiers/imosSpikeClassifiersLimits.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
%
% Example:
%
% len = 100
% [limits] = imosTimeSeriesSpikeQCLimits(len)
% len = 100;
% [limits] = imosSpikeClassifiersLimits(len);
% assert(limits.hampel_half_window_width.min==1)
% assert(limits.hampel_half_window_width.max==len/2)
% assert(limits.hampel_madfactor.max = 20)
% assert(limits.hampel_madfactor.max==20)
%
% author: hugo.oliveira@utas.edu.au
%
Expand Down

0 comments on commit 0eda60b

Please sign in to comment.