Fixed typo.

time-shift
Stéphane Adjemian (Charybdis) 2013-07-04 21:17:54 +02:00
parent fb5c5d4ea6
commit 11bda09860
1 changed files with 2 additions and 2 deletions

View File

@ -26,11 +26,11 @@ for f=1:length(listoffiles)
else
if isequal(listoffiles{f}(end-1:end),'.m') && isempty(strfind(listoffiles{f},'.#'))
if is_unitary_test_available(listoffiles{f})
disp(['***** Process unitary tests in ' listoffiles{f}])
disp(['***** Process unitary tests in ' listoffiles{f}])
[check, info] = mtest(listoffiles{f});
report = [report; info];
else
disp(['Booh! No unitay tests available in ' listoffiles{f}])
disp(['Booh! No unitary tests available in ' listoffiles{f}])
end
end
end