Skip to content

Commit 3909f9f

Browse files
committed
Update tFormatCode assumeTrue condition
1 parent 91f043e commit 3909f9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/matlab/matlabls/handlers/formatting/tFormatCode.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
function isApplicable (testCase)
99
% Determine if the test should be skipped in the current environment
1010
isTestingEnvironment = ~isempty(getenv('MATLAB_TEST_ENVIRONMENT'));
11-
shouldRun = ~(isMATLABReleaseOlderThan('R2025a') && isTestingEnvironment);
11+
shouldRun = ~(isMATLABReleaseOlderThan('R2023b') && isTestingEnvironment);
1212

1313
testCase.assumeTrue(...
1414
shouldRun,...
15-
"Document formatting test cannot run prior to 25a in GitHub test environment.");
15+
"Document formatting test cannot run prior to 23b in GitHub test environment.");
1616
end
1717

1818
function setup (~)

0 commit comments

Comments
 (0)