Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
仟弋 committed Dec 6, 2024
1 parent 4d2ceed commit 86d0c01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void testCreateIndexMappedVectors() {
int[] mapping = new int[] {0, 2, 1, 3, 2, 3, 1, 0, 4};

ColumnVector[] newColumnVectors =
VectorMappingUtils.createIndexMappedVectors(mapping, columnVectors);
VectorMappingUtils.createMappedVectors(mapping, columnVectors);

for (int i = 0; i < mapping.length; i++) {
Assertions.assertThat(newColumnVectors[i]).isEqualTo(columnVectors[mapping[i]]);
Expand Down

0 comments on commit 86d0c01

Please sign in to comment.