Skip to content

Commit c81e510

Browse files
authored
Update tests for GHA
1 parent 5a2ed98 commit c81e510

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/FilterWizardTests.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ function testAutoGenerationRipple(testCase)
1919
sr = testCase.SampleRates;
2020
limit = testCase.MaxRippleDB;
2121
% Test ripple of generated filters
22-
parfor r = 1:length(sr)
22+
// parfor r = 1:length(sr)
23+
for r = 1:length(sr)
2324
out = internal_design_filter_opt_ripple(sr(r));
2425
verifyThat(testCase, out.Apass_actual, IsLessThanOrEqualTo(limit), ...
2526
sprintf('Generated filter for rate %d with ripple %f (Limit %f)',...

test/runTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
try
1010
suite = testsuite({'FilterWizardTests'});
11-
runner = matlab.unittest.TestRunner.withTextOutput('OutputDetail',1);
11+
runner = matlab.unittest.TestRunner.withTextOutput('OutputDetail',4);
1212
runner.addPlugin(DiagnosticsValidationPlugin)
1313

1414
xmlFile = 'FilterWizardTestResults.xml';

0 commit comments

Comments
 (0)