fix test case

This commit is contained in:
Shinsuke Sugaya 2022-08-11 11:41:31 +09:00
parent 8e6d35c982
commit 29f1154e2e

View file

@ -84,7 +84,7 @@ public class SearchListTests extends CrudTestBase {
protected Map<String, Object> createSearchBody(final int size) {
final Map<String, Object> searchBody = new HashMap<>();
searchBody.put("size", size);
searchBody.put("q", NAME_PREFIX);
searchBody.put("q", NAME_PREFIX + "*");
return searchBody;
}