Skip to content

Commit b572840

Browse files
committed
Change testCase to tc
1 parent b78225e commit b572840

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

matlab/test/arrow/array/tBooleanArray.m

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -217,17 +217,17 @@ function TestIsEqualFalse(tc)
217217
tc.verifyFalse(isequal(array1, array1, array3, array4, array5));
218218
end
219219

220-
function TestNumNulls(testCase)
220+
function TestNumNulls(tc)
221221
% Verify the NumNulls property returns correct value.
222222

223223
% array1 has 0 null values.
224-
data1 = testCase.MatlabArrayFcn([true false true false]);
225-
array1 = testCase.ArrowArrayConstructorFcn(data1);
226-
testCase.verifyEqual(array1.NumNulls, int64(0));
224+
data1 = tc.MatlabArrayFcn([true false true false]);
225+
array1 = tc.ArrowArrayConstructorFcn(data1);
226+
tc.verifyEqual(array1.NumNulls, int64(0));
227227

228228
% array2 has 3 null values.
229-
array2 = testCase.ArrowArrayConstructorFcn(data1, Valid=3);
230-
testCase.verifyEqual(array2.NumNulls, int64(3));
229+
array2 = tc.ArrowArrayConstructorFcn(data1, Valid=3);
230+
tc.verifyEqual(array2.NumNulls, int64(3));
231231
end
232232

233233
function TestNumNullsNoSetter(tc)

0 commit comments

Comments
 (0)