Skip to content

Commit e95c2af

Browse files
committed
Test fix - Graph HLRC tests needed another field adding to randomisation exception list
Related to #33231
1 parent a5b34c7 commit e95c2af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected boolean supportsUnknownFields() {
7676

7777
@Override
7878
protected String[] getShuffleFieldsExceptions() {
79-
return new String[]{"vertices"};
79+
return new String[]{"vertices", "connections"};
8080
}
8181

8282
protected Predicate<String> getRandomFieldsExcludeFilterWhenResultHasErrors() {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ protected boolean supportsUnknownFields() {
8989

9090
@Override
9191
protected String[] getShuffleFieldsExceptions() {
92-
return new String[]{"vertices"};
92+
return new String[]{"vertices", "connections"};
9393
}
9494

9595
protected Predicate<String> getRandomFieldsExcludeFilterWhenResultHasErrors() {

0 commit comments

Comments
 (0)