Skip to content

Commit 96a6891

Browse files
bugfix
1 parent cfdb440 commit 96a6891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/enrich/LookupFromIndexOperatorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public class LookupFromIndexOperatorTests extends OperatorTestCase {
9393

9494
@Before
9595
public void buildLookupIndex() throws IOException {
96-
numberOfJoinColumns = 2;// 1 + randomInt(1); // 1 or 2 join columns
96+
numberOfJoinColumns = 1 + randomInt(1); // 1 or 2 join columns
9797
try (RandomIndexWriter writer = new RandomIndexWriter(random(), lookupIndexDirectory)) {
9898
for (int i = 0; i < LOOKUP_SIZE; i++) {
9999
List<IndexableField> fields = new ArrayList<>();

0 commit comments

Comments
 (0)