Skip to content

Commit f860e58

Browse files
committed
Test fix - GraphExploreResponseTests should not randomise array elements
Closes #33086
1 parent f3cfd45 commit f860e58

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ protected GraphExploreResponse doParseInstance(XContentParser parser) throws IO
8787
protected boolean supportsUnknownFields() {
8888
return true;
8989
}
90+
91+
@Override
92+
protected String[] getShuffleFieldsExceptions() {
93+
return new String[]{"vertices"};
94+
}
9095

9196
protected Predicate<String> getRandomFieldsExcludeFilterWhenResultHasErrors() {
9297
return field -> field.startsWith("responses");

0 commit comments

Comments
 (0)