File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
src/test/java/com/meilisearch/integration Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 11package com .meilisearch .integration ;
22
33import static org .hamcrest .MatcherAssert .assertThat ;
4- import static org .hamcrest .Matchers .arrayWithSize ;
54import static org .hamcrest .Matchers .equalTo ;
65import static org .hamcrest .Matchers .instanceOf ;
76import static org .hamcrest .Matchers .is ;
@@ -45,8 +44,6 @@ public void testClientGetKeys() throws Exception {
4544 Results <Key > result = client .getKeys ();
4645 Key [] keys = result .getResults ();
4746
48- assertThat (keys , is (arrayWithSize (4 )));
49-
5047 for (Key key : keys ) {
5148 assertThat (key .getKey (), is (notNullValue ()));
5249 assertThat (key .getUid (), is (notNullValue ()));
@@ -65,8 +62,6 @@ public void testClientGetKeysWithJacksonJsonHandler() throws Exception {
6562 Results <Key > result = clientJackson .getKeys ();
6663 Key [] keys = result .getResults ();
6764
68- assertThat (keys , is (arrayWithSize (4 )));
69-
7065 for (Key key : keys ) {
7166 assertThat (key .getKey (), is (notNullValue ()));
7267 assertThat (key .getActions (), is (notNullValue ()));
You can’t perform that action at this time.
0 commit comments