Skip to content

Commit fa7d470

Browse files
Fix entry count in write map test
1 parent 5470a78 commit fa7d470

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adapter/avro/src/test/java/org/apache/arrow/adapter/avro/ArrowToAvroDataTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2295,7 +2295,7 @@ public void testWriteMap() throws Exception {
22952295
root.allocateNew();
22962296

22972297
// Total number of entries that will be writen to each vector
2298-
int entryCount = 5 * 4 * 3;
2298+
int entryCount = 5 + 4 + 3;
22992299

23002300
// Set test data for intList
23012301
BaseWriter.MapWriter writer = intMapVector.getWriter();

0 commit comments

Comments
 (0)