Skip to content

Commit

Permalink
Fix test comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed May 24, 2024
1 parent e77ed24 commit 0a32b35
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions matlab/test/arrow/c/tRoundTripRecordBatch.m
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,8 @@ function ImportErrorInvalidSchema(testCase)
end

function ImportFromStructArray(testCase)
% Verify that a StructArray that has been exported via the
% C Data Interface Interface format can be imported as a
% RecordBatch.
% Verify a StructArray exported via the C Data Interface format
% can be imported as a RecordBatch.
field1 = arrow.array(1:3);

field2 = arrow.array(["A" "B" "C"]);
Expand All @@ -148,9 +147,8 @@ function ImportFromStructArray(testCase)
end

function ExportToStructArray(testCase)
% Verify that a RecordBatch that has been exported via the
% C Data Interface Interface format can be imported as a
% StructArray.
% Verify a RecordBatch exported via the C Data Interface
% format can be imported as a StructArray.
column1 = arrow.array(1:3);
column2 = arrow.array(["A" "B" "C"]);
rb = arrow.tabular.RecordBatch.fromArrays(column1, column2, ...
Expand Down

0 comments on commit 0a32b35

Please sign in to comment.