Skip to content

Commit

Permalink
Fix typo in tTime32Array.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingurney committed Aug 29, 2023
1 parent 9856204 commit 50eb575
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions matlab/test/arrow/array/tTime32Array.m
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ function TestDuration(testCase, Unit)
function TestValid(testCase, Unit)
% Verify the Valid property returns the expected logical vector.
times = seconds([100 200 NaN 355 NaN 400]);
arrray = testCase.ArrowArrayConstructorFcn(times, TImeUnit=Unit);
testCase.verifyEqual(arrray.Valid, [true; true; false; true; false; true]);
testCase.verifyEqual(toMATLAB(arrray), times');
testCase.verifyEqual(duration(arrray), times');
array = testCase.ArrowArrayConstructorFcn(times, TimeUnit=Unit);
testCase.verifyEqual(array.Valid, [true; true; false; true; false; true]);
testCase.verifyEqual(toMATLAB(array), times');
testCase.verifyEqual(duration(array), times');
end

function InferNullsTrueNVPair(testCase, Unit)
Expand Down

0 comments on commit 50eb575

Please sign in to comment.