Skip to content

Commit b2493ec

Browse files
committed
Modify CI
1 parent f85c5f0 commit b2493ec

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

SoftwareTests/InitFiles/InitAnalogToDigitalConversion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
audioread = @(x) NewAudioRead(x);
88
audioplayer = @(x,y) NewAudioPlayer(x,y);
99
function varargout=NewAudioRead(varargin)
10-
load(fullfile(currentProject().RootFolder,"SoftwareTests\InitFiles\InitAnalogToDigitalConversion.mat"));
10+
load(fullfile(currentProject().RootFolder,"SoftwareTests","InitFiles","InitAnalogToDigitalConversion.mat"));
1111
varargout={JazzSignal,JazzSamplingFreq};
1212
end
1313
function varargout=NewAudioPlayer(varargin)

SoftwareTests/InitFiles/InitFilteringIntro.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
audioread = @(x) NewAudioRead(x);
88
audioplayer = @(x,y) NewAudioPlayer(x,y);
99
function varargout=NewAudioRead(varargin)
10-
load(fullfile(currentProject().RootFolder,"SoftwareTests\InitFiles\InitFilteringIntro.mat"));
10+
load(fullfile(currentProject().RootFolder,"SoftwareTests","InitFiles","InitFilteringIntro.mat"));
1111
varargout={Signal,SamplingFrequency};
1212
end
1313
function varargout=NewAudioPlayer(varargin)

SoftwareTests/SmokeTests.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ function SmokeRun(testCase,File)
5454
run(fullfile("Scripts",Filename));
5555
catch ME %#ok<*UNRCH>
5656
if ~any(strcmp(ME.identifier,KnownIssuesID))
57-
disp("Error >>> Line "+ME.stack(1).line)
58-
testCase.verifyTrue(false,ME.message);
57+
rethrow(ME)
5958
end
6059
end
6160

0 commit comments

Comments
 (0)