Skip to content

Commit 047e54f

Browse files
committed
Maintenance for R2025b
* Update to new startup app * Improve ci.yml * Standardize project details * Remove reference to emailing for solutions in README as the solutions are included in Instructor Resources * Update identity as the MathWorks Educator Content Development team * Update function names to PascalCase in FunctionLibrary * Update expected error when taking the square root of a string
2 parents 2fe1cdb + d14800f commit 047e54f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

SoftwareTests/PreFiles/PreFunctionsSoln.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
% Pre-run script for FunctionsSoln.mlx
22
% ---- Known Issues -----
3-
KnownIssuesID = "MATLAB:UndefinedFunction";
3+
if isMATLABReleaseOlderThan("R2025b")
4+
KnownIssuesID = "MATLAB:UndefinedFunction";
5+
else
6+
KnownIssuesID = "MATLAB:math:mustBeFloat";
7+
end
48
% ---- Pre-run commands -----
59

610
addpath(genpath(fullfile(currentProject().RootFolder,...

0 commit comments

Comments
 (0)