Skip to content

Commit

Permalink
fix: avoid loading non-binary files in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ocehugo committed Mar 9, 2021
1 parent a19ef3b commit 94e3f26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Parser/testWorkhorse.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
%

properties (TestParameter)
enu_file = FilesInFolder(fpath('v000/enu'));
beam_file = FilesInFolder(fpath('v000/beam'));
enu_file = FilesInFolder(fpath('v000/enu'),{'.mat','.ppp','.pqc'});
beam_file = FilesInFolder(fpath('v000/beam'),{'.mat','.ppp','.pqc'});

quartermaster_file = {fpath('v000/enu/16413000.000'), ...
fpath('v000/enu/16923000.000'), ...
Expand Down

0 comments on commit 94e3f26

Please sign in to comment.