Skip to content

Commit 0300ee0

Browse files
committed
test issubdir: coverage
1 parent 16706fd commit 0300ee0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/TestIsSubdir.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
classdef (SharedTestFixtures={ matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))))}, ...
2-
TestTags = {'R2019b', 'pure'}) ...
2+
TestTags = {'R2017b', 'pure'}) ...
33
TestIsSubdir < matlab.unittest.TestCase
44

55
properties (TestParameter)
@@ -28,10 +28,10 @@ function test_is_prefix(tc, p_is_prefix)
2828
function p = init_is_subdir()
2929

3030
p = {
31-
{"a/b", "a/b", false}, ...
32-
{"a//b/c", "a/b", true}, ...
31+
{'a/b', "a/b", false}, ...
32+
{"a//b/c", 'a/b', true}, ...
3333
{"a/b", "a//b", false}, ...
34-
{"a/./b/c", "a/b", false}, ...
34+
{'a/./b/c', 'a/b', false}, ...
3535
{"a/b/c", "a/./b", false}, ...
3636
{"a/b", "a/b/", false}, ...
3737
{"a/b", "a", true}, ...

0 commit comments

Comments
 (0)