Skip to content

Commit 6a92a35

Browse files
committed
Test fix - GraphExploreResponseTests should not randomise array elements
Closes #33086
1 parent b6fca90 commit 6a92a35

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

x-pack/protocol/src/test/java/org/elasticsearch/protocol/xpack/graph/GraphExploreResponseTests.java

+5
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ private static GraphExploreResponse createInstance(int numFailures) {
7474
}
7575

7676

77+
@Override
78+
protected String[] getShuffleFieldsExceptions() {
79+
return new String[]{"vertices"};
80+
}
81+
7782
private static GraphExploreResponse createTestInstanceWithFailures() {
7883
return createInstance(randomIntBetween(1, 128));
7984
}

0 commit comments

Comments
 (0)