Skip to content

Commit

Permalink
Fixed bug in test_something.m
Browse files Browse the repository at this point in the history
  • Loading branch information
adamltaylor committed May 18, 2023
1 parent 23a2ad9 commit 707cbb0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test_something.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ function test_something(freezing_or_thawing, raw_tiles_or_octree, local_or_clust
% Delete the test output folder
reset_for_test(output_folder_path) ;

% Make sure the input folder exists
if ~logical(exist(input_folder_path, 'dir')) ,
error('Input folder %s is missing, or is not a folder', input_folder_path) ;
end

% Call the script
if strcmp(freezing_or_thawing, 'freezing') ,
freeze_mouselight_folder(...
Expand Down

0 comments on commit 707cbb0

Please sign in to comment.