Skip to content

Commit ca70aec

Browse files
committed
Actually randomize the test
1 parent e631d75 commit ca70aec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

server/src/test/java/org/elasticsearch/ingest/IngestDocumentTests.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,7 @@ private void doWithAccessPattern(IngestPipelineFieldAccessPattern accessPattern,
185185
* @throws Exception Any exception thrown from the provided consumer
186186
*/
187187
private void doWithRandomAccessPattern(Consumer<IngestDocument> action) throws Exception {
188-
// doWithAccessPattern(randomFrom(IngestPipelineFieldAccessPattern.values()), action);
189-
// doWithAccessPattern(CLASSIC, action);
190-
doWithAccessPattern(FLEXIBLE, action);
188+
doWithAccessPattern(randomFrom(IngestPipelineFieldAccessPattern.values()), action);
191189
}
192190

193191
public void testSimpleGetFieldValue() throws Exception {

0 commit comments

Comments
 (0)