Skip to content

Commit 2cbe62e

Browse files
committed
test:lint
1 parent f8eea4b commit 2cbe62e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

test/TestFilePure.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
methods(TestClassSetup)
1010
function pkg_path(tc)
11-
p = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
12-
tc.applyFixture(p)
11+
fsp = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
12+
tc.applyFixture(fsp)
1313
end
1414
end
1515

test/TestIsAbsolute.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
methods(TestClassSetup)
1010
function pkg_path(tc)
11-
p = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
12-
tc.applyFixture(p)
11+
fsp = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
12+
tc.applyFixture(fsp)
1313
end
1414
end
1515

test/TestParent.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
methods(TestClassSetup)
88
function pkg_path(tc)
9-
p = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
10-
tc.applyFixture(p)
9+
fsp = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
10+
tc.applyFixture(fsp)
1111
end
1212
end
1313

test/TestStem.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
methods(TestClassSetup)
2121
function pkg_path(tc)
22-
p = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
23-
tc.applyFixture(p)
22+
fsp = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
23+
tc.applyFixture(fsp)
2424
end
2525
end
2626

test/TestSuffix.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
methods(TestClassSetup)
1515
function pkg_path(tc)
16-
p = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
17-
tc.applyFixture(p)
16+
fsp = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
17+
tc.applyFixture(fsp)
1818
end
1919
end
2020

test/TestWithSuffix.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
methods(TestClassSetup)
1818
function pkg_path(tc)
19-
p = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
20-
tc.applyFixture(p)
19+
fsp = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
20+
tc.applyFixture(fsp)
2121
end
2222
end
2323

0 commit comments

Comments
 (0)