Skip to content

Commit

Permalink
Test fix - Graph HLRC tests needed another field adding to randomisat…
Browse files Browse the repository at this point in the history
…ion exception list

Related to #33231
  • Loading branch information
markharwood committed Aug 29, 2018
1 parent a5b34c7 commit e95c2af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected boolean supportsUnknownFields() {

@Override
protected String[] getShuffleFieldsExceptions() {
return new String[]{"vertices"};
return new String[]{"vertices", "connections"};
}

protected Predicate<String> getRandomFieldsExcludeFilterWhenResultHasErrors() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected boolean supportsUnknownFields() {

@Override
protected String[] getShuffleFieldsExceptions() {
return new String[]{"vertices"};
return new String[]{"vertices", "connections"};
}

protected Predicate<String> getRandomFieldsExcludeFilterWhenResultHasErrors() {
Expand Down

0 comments on commit e95c2af

Please sign in to comment.