Skip to content

Commit

Permalink
Remove trailing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingurney committed May 20, 2024
1 parent b402248 commit 8389dfb
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions matlab/test/arrow/c/tRoundTrip.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function EmptyArray(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);

% Empty 0x1
Expand All @@ -36,7 +36,7 @@ function EmptyArray(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);

% Empty 1x0
Expand All @@ -46,7 +46,7 @@ function EmptyArray(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);
end

Expand All @@ -58,7 +58,7 @@ function ArrayWithNulls(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);

% Vector with nulls
Expand All @@ -68,7 +68,7 @@ function ArrayWithNulls(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);

% Vector all nulls
Expand All @@ -90,7 +90,7 @@ function Float64Array(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);

% Vector
Expand All @@ -100,7 +100,7 @@ function Float64Array(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);
end

Expand All @@ -112,7 +112,7 @@ function StringArray(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);

% Vector
Expand All @@ -122,7 +122,7 @@ function StringArray(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);
end

Expand All @@ -134,7 +134,7 @@ function TimestampArray(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);

% Vector
Expand All @@ -148,7 +148,7 @@ function TimestampArray(testCase)

expected.export(cArray.Address, cSchema.Address);
actual = arrow.array.Array.import(cArray, cSchema);

testCase.verifyEqual(actual, expected);
end

Expand Down Expand Up @@ -199,5 +199,5 @@ function ImportErrorImportFailed(testCase)
end

end

end
end

0 comments on commit 8389dfb

Please sign in to comment.