Skip to content

Commit

Permalink
fixed broken integration tests after elastic#34225 pr
Browse files Browse the repository at this point in the history
  • Loading branch information
erayarslan committed Oct 4, 2018
1 parent d5f78f4 commit 4d9243b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1462,7 +1462,7 @@ public void testNestedSort() throws IOException, InterruptedException, Execution
assertThat(hits.length, is(2));
assertThat(hits[0].getSortValues().length, is(1));
assertThat(hits[1].getSortValues().length, is(1));
assertThat(hits[0].getSortValues()[0], is("cba"));
assertThat(hits[0].getSortValues()[0], is("bar"));
assertThat(hits[1].getSortValues()[0], is("abc"));

// We sort on nested sub field
Expand Down

0 comments on commit 4d9243b

Please sign in to comment.