Skip to content

Commit f752e8d

Browse files
committed
Fix GitHub actions
1 parent da192ec commit f752e8d

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Tests/TestRunnerIndustrialMicrogrid.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%% Script to run unit tests
22
% This script runs the unit test and generates the code coverage report
33

4-
% Copyright 2021-2023 The MathWorks, Inc.
4+
% Copyright 2021-2026 The MathWorks, Inc.
55

66
relStr = matlabRelease().Release;
77
disp("This is MATLAB " + relStr + ".")
@@ -11,7 +11,7 @@
1111
%% Create test suite
1212

1313
suite = matlab.unittest.TestSuite.fromFile(...
14-
fullfile(topFolder, "Test_Scripts", "IndustrialMicrogridWorkflowTest.m"));
14+
fullfile(topFolder, "Tests", "IndustrialMicrogridWorkflowTest.m"));
1515

1616
%% Create test runner
1717

Tests/TestRunnerRemoteMicrogrid.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%% Script to run unit tests
22
% This script runs the unit test and generates the code coverage report
33

4-
% Copyright 2023 The MathWorks, Inc.
4+
% Copyright 2023-2016 The MathWorks, Inc.
55

66
relStr = matlabRelease().Release;
77
disp("This is MATLAB " + relStr + ".")
@@ -11,7 +11,7 @@
1111
%% Create test suite
1212

1313
suite = matlab.unittest.TestSuite.fromFile(...
14-
fullfile(topFolder, "Test_Scripts", "RemoteMicrogridWorkflowTest.m"));
14+
fullfile(topFolder, "Tests", "RemoteMicrogridWorkflowTest.m"));
1515

1616
%% Create test runner
1717

Tests/TestRunnerTechnoEconomicAnalysis.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%% Script to run unit tests
22
% This script runs the unit test and generates the code coverage report
33

4-
% Copyright 2024 The MathWorks, Inc.
4+
% Copyright 2024-2026 The MathWorks, Inc.
55

66
relStr = matlabRelease().Release;
77
disp("This is MATLAB " + relStr + ".")
@@ -11,7 +11,7 @@
1111
%% Create test suite
1212

1313
suite = matlab.unittest.TestSuite.fromFile(...
14-
fullfile(topFolder, "Test_Scripts", "TechnoEconomicAnalysisWorkflowTest.m"));
14+
fullfile(topFolder, "Tests", "TechnoEconomicAnalysisWorkflowTest.m"));
1515

1616
%% Create test runner
1717

0 commit comments

Comments
 (0)