File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
matlab/test/arrow/tabular Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -666,7 +666,8 @@ function TestIsEqualFalse(testCase)
666
666
667
667
function FromRecordBatchesZeroInputsError(testCase )
668
668
% Verify the arrow.tabular.Table.fromRecordBatches function
669
- % throws an `arrow:Table:FromRecordBatches:ZeroBatches` exception if called with zero input arguments.
669
+ % throws an `arrow:Table:FromRecordBatches:ZeroBatches`
670
+ % exception if called with zero input arguments.
670
671
import arrow .tabular .Table
671
672
fcn = @() Table .fromRecordBatches();
672
673
testCase .verifyError(fcn , " arrow:Table:FromRecordBatches:ZeroBatches" );
@@ -702,8 +703,9 @@ function FromRecordBatchesMultipleInputs(testCase)
702
703
703
704
function FromRecordBatchesInconsistentSchemaError(testCase )
704
705
% Verify the arrow.tabular.Table.fromRecordBatches function
705
- % throws an `arrow:Table:FromRecordBatches:InconsistentSchem` exception if the Schemas of the provided
706
- % RecordBatches are inconsistent
706
+ % throws an `arrow:Table:FromRecordBatches:InconsistentSchema`
707
+ % exception if the Schemas of the provided RecordBatches are
708
+ % inconsistent.
707
709
import arrow .tabular .Table
708
710
matlabTable1 = table(" A" , 1 );
709
711
matlabTable2 = table(2 , " B" );
You can’t perform that action at this time.
0 commit comments