Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit bee66d3

Browse files
Cleaning up
1 parent cfbfa3a commit bee66d3

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1beta2/JsonToProtoMessageTest.java

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -211,17 +211,6 @@ public class JsonToProtoMessageTest {
211211
new JSONObject().put("test_field_type", new JSONObject().put("test_int", 1))
212212
};
213213

214-
private static JSONObject[] simpleJSONAArrayBytes = {
215-
new JSONObject()
216-
.put(
217-
"test_repeated",
218-
new JSONArray(
219-
new char[][] {
220-
{'a', 'b'},
221-
{'c'},
222-
}))
223-
};
224-
225214
private static JSONObject[] simpleJSONArrays = {
226215
new JSONObject()
227216
.put(
@@ -275,7 +264,7 @@ public class JsonToProtoMessageTest {
275264
BigDecimalByteStringEncoder.encodeToNumericByteString(new BigDecimal("1.2"))
276265
.toByteArray()
277266
})),
278-
// new JSONObject().put("test_repeated", new JSONArray(new char[][] {{'a', 'b'}, {'c'}})),
267+
new JSONObject().put("test_repeated", new JSONArray(new char[][] {{'a', 'b'}, {'c'}})),
279268
new JSONObject().put("test_repeated", new JSONArray(new String[][] {{"hello"}, {"test"}})),
280269
new JSONObject()
281270
.put(

0 commit comments

Comments
 (0)