Skip to content

Commit 10dca2c

Browse files
committed
fix
1 parent 6bc3f68 commit 10dca2c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

java/vector/src/test/java/org/apache/arrow/vector/TestValueVector.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2283,7 +2283,7 @@ public void testIntVectorEquals() {
22832283
}
22842284

22852285
@Test
2286-
public void testVarcharEquals() {
2286+
public void testVarcharVectorEquals() {
22872287
try (final VarCharVector vector1 = new VarCharVector("v1", allocator);
22882288
final VarCharVector vector2 = new VarCharVector("v2", allocator)) {
22892289

@@ -2308,7 +2308,7 @@ public void testVarcharEquals() {
23082308
}
23092309

23102310
@Test
2311-
public void testVarBinaryEquals() {
2311+
public void testVarBinaryVectorEquals() {
23122312
try (final VarBinaryVector vector1 = new VarBinaryVector("v1", allocator);
23132313
final VarBinaryVector vector2 = new VarBinaryVector("v2", allocator)) {
23142314

@@ -2333,7 +2333,7 @@ public void testVarBinaryEquals() {
23332333
}
23342334

23352335
@Test
2336-
public void testListEquals() {
2336+
public void testListVectorEquals() {
23372337
try (final ListVector vector1 = ListVector.empty("v1", allocator);
23382338
final ListVector vector2 = ListVector.empty("v2", allocator);) {
23392339

@@ -2363,7 +2363,7 @@ public void testListEquals() {
23632363
}
23642364

23652365
@Test
2366-
public void testStructEquals() {
2366+
public void testStructVectorEquals() {
23672367
try (final StructVector vector1 = StructVector.empty("v1", allocator);
23682368
final StructVector vector2 = StructVector.empty("v2", allocator);) {
23692369
vector1.addOrGet("f0", FieldType.nullable(new ArrowType.Int(32, true)), IntVector.class);
@@ -2395,7 +2395,7 @@ public void testStructEquals() {
23952395
}
23962396

23972397
@Test
2398-
public void testUnionEquals() {
2398+
public void testUnionVectorEquals() {
23992399
try (final UnionVector vector1 = new UnionVector("v1", allocator, null);
24002400
final UnionVector vector2 = new UnionVector("v2", allocator, null);) {
24012401

0 commit comments

Comments
 (0)