We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc7352a commit ef0b7a0Copy full SHA for ef0b7a0
+stdlib/+java/private/javaAbsolutePath.m
@@ -7,7 +7,9 @@
7
javaPath = file.toPath();
8
9
if ~javaPath.isAbsolute()
10
- javaPath = javaPathObject(pwd()).resolve(javaPath);
+ % auxilary variable for Matlab < R2019b
11
+ b = javaPathObject(pwd());
12
+ javaPath = b.resolve(javaPath);
13
end
14
15
test/TestSame.m
@@ -1,5 +1,5 @@
1
classdef (SharedTestFixtures={ matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))))}, ...
2
- TestTags = {'R2019b', 'impure'}) ...
+ TestTags = {'R2017b', 'impure'}) ...
3
TestSame < matlab.unittest.TestCase
4
5
properties (TestParameter)
0 commit comments