Skip to content

Commit

Permalink
Address code review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Oct 3, 2023
1 parent 2b03c3f commit 3fa8bde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions matlab/test/arrow/array/tStructArray.m
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ function FromMATLABZeroVariablesError(tc)
tc.verifyError(fcn, "arrow:struct:ZeroVariables");
end

function FromMATLABZeroWrongNumberFieldNames(tc)
function FromMATLABWrongNumberFieldNames(tc)
% Verify StructArray.fromMATLAB throws an error when the
% FieldNames nv-pair is provided and its number of elements
% does not equal the number of variables in the input table T.
Expand All @@ -350,9 +350,9 @@ function FromMATLABZeroWrongNumberFieldNames(tc)
tc.verifyError(fcn, "arrow:tabular:WrongNumberColumnNames");
end

function FromMATLABValidBadIndex(tc)
function FromMATLABValidNVPairBadIndex(tc)
% Verify StructArray.fromMATLAB throws an error when the
% Valid nv-pair is provided and its contains an invalid index.
% Valid nv-pair is provided and it contains an invalid index.

import arrow.array.StructArray

Expand Down

0 comments on commit 3fa8bde

Please sign in to comment.