Skip to content

Commit 8389dfb

Browse files
committed
Remove trailing whitespace.
1 parent b402248 commit 8389dfb

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Diff for: matlab/test/arrow/c/tRoundTrip.m

+13-13
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function EmptyArray(testCase)
2626

2727
expected.export(cArray.Address, cSchema.Address);
2828
actual = arrow.array.Array.import(cArray, cSchema);
29-
29+
3030
testCase.verifyEqual(actual, expected);
3131

3232
% Empty 0x1
@@ -36,7 +36,7 @@ function EmptyArray(testCase)
3636

3737
expected.export(cArray.Address, cSchema.Address);
3838
actual = arrow.array.Array.import(cArray, cSchema);
39-
39+
4040
testCase.verifyEqual(actual, expected);
4141

4242
% Empty 1x0
@@ -46,7 +46,7 @@ function EmptyArray(testCase)
4646

4747
expected.export(cArray.Address, cSchema.Address);
4848
actual = arrow.array.Array.import(cArray, cSchema);
49-
49+
5050
testCase.verifyEqual(actual, expected);
5151
end
5252

@@ -58,7 +58,7 @@ function ArrayWithNulls(testCase)
5858

5959
expected.export(cArray.Address, cSchema.Address);
6060
actual = arrow.array.Array.import(cArray, cSchema);
61-
61+
6262
testCase.verifyEqual(actual, expected);
6363

6464
% Vector with nulls
@@ -68,7 +68,7 @@ function ArrayWithNulls(testCase)
6868

6969
expected.export(cArray.Address, cSchema.Address);
7070
actual = arrow.array.Array.import(cArray, cSchema);
71-
71+
7272
testCase.verifyEqual(actual, expected);
7373

7474
% Vector all nulls
@@ -90,7 +90,7 @@ function Float64Array(testCase)
9090

9191
expected.export(cArray.Address, cSchema.Address);
9292
actual = arrow.array.Array.import(cArray, cSchema);
93-
93+
9494
testCase.verifyEqual(actual, expected);
9595

9696
% Vector
@@ -100,7 +100,7 @@ function Float64Array(testCase)
100100

101101
expected.export(cArray.Address, cSchema.Address);
102102
actual = arrow.array.Array.import(cArray, cSchema);
103-
103+
104104
testCase.verifyEqual(actual, expected);
105105
end
106106

@@ -112,7 +112,7 @@ function StringArray(testCase)
112112

113113
expected.export(cArray.Address, cSchema.Address);
114114
actual = arrow.array.Array.import(cArray, cSchema);
115-
115+
116116
testCase.verifyEqual(actual, expected);
117117

118118
% Vector
@@ -122,7 +122,7 @@ function StringArray(testCase)
122122

123123
expected.export(cArray.Address, cSchema.Address);
124124
actual = arrow.array.Array.import(cArray, cSchema);
125-
125+
126126
testCase.verifyEqual(actual, expected);
127127
end
128128

@@ -134,7 +134,7 @@ function TimestampArray(testCase)
134134

135135
expected.export(cArray.Address, cSchema.Address);
136136
actual = arrow.array.Array.import(cArray, cSchema);
137-
137+
138138
testCase.verifyEqual(actual, expected);
139139

140140
% Vector
@@ -148,7 +148,7 @@ function TimestampArray(testCase)
148148

149149
expected.export(cArray.Address, cSchema.Address);
150150
actual = arrow.array.Array.import(cArray, cSchema);
151-
151+
152152
testCase.verifyEqual(actual, expected);
153153
end
154154

@@ -199,5 +199,5 @@ function ImportErrorImportFailed(testCase)
199199
end
200200

201201
end
202-
203-
end
202+
203+
end

0 commit comments

Comments
 (0)