File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/com/meilisearch/integration Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public void testClientGetKeys() throws Exception {
4545 Results <Key > result = client .getKeys ();
4646 Key [] keys = result .getResults ();
4747
48- assertThat (keys , is (arrayWithSize (2 )));
48+ assertThat (keys , is (arrayWithSize (4 )));
4949
5050 for (Key key : keys ) {
5151 assertThat (key .getKey (), is (notNullValue ()));
@@ -65,7 +65,7 @@ public void testClientGetKeysWithJacksonJsonHandler() throws Exception {
6565 Results <Key > result = clientJackson .getKeys ();
6666 Key [] keys = result .getResults ();
6767
68- assertThat (keys , is (arrayWithSize (2 )));
68+ assertThat (keys , is (arrayWithSize (4 )));
6969
7070 for (Key key : keys ) {
7171 assertThat (key .getKey (), is (notNullValue ()));
You can’t perform that action at this time.
0 commit comments