Transpose expected and actual, and remove duplicate info from message. (#27515)
Previously: ``` > Throwable #1: java.lang.AssertionError: Expected all shards successful but got successful [8] total [9] > Expected: <8> > but: was <9> ``` Now: ``` > Throwable #1: java.lang.AssertionError: Expected all shards successful > Expected: <9> > but: was <8> ```
This commit is contained in:
parent
af971b3081
commit
00867e618d
|
@ -347,15 +347,15 @@ public class ElasticsearchAssertions {
|
|||
|
||||
public static void assertAllSuccessful(BroadcastResponse response) {
|
||||
assertNoFailures(response);
|
||||
assertThat("Expected all shards successful but got successful [" + response.getSuccessfulShards() + "] total [" + response.getTotalShards() + "]",
|
||||
response.getTotalShards(), equalTo(response.getSuccessfulShards()));
|
||||
assertThat("Expected all shards successful",
|
||||
response.getSuccessfulShards(), equalTo(response.getTotalShards()));
|
||||
assertVersionSerializable(response);
|
||||
}
|
||||
|
||||
public static void assertAllSuccessful(SearchResponse response) {
|
||||
assertNoFailures(response);
|
||||
assertThat("Expected all shards successful but got successful [" + response.getSuccessfulShards() + "] total [" + response.getTotalShards() + "]",
|
||||
response.getTotalShards(), equalTo(response.getSuccessfulShards()));
|
||||
assertThat("Expected all shards successful",
|
||||
response.getSuccessfulShards(), equalTo(response.getTotalShards()));
|
||||
assertVersionSerializable(response);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue