Skip to content

Commit b9ecfb5

Browse files
committed
Expect 4 keys instead of 2
1 parent 548decc commit b9ecfb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/meilisearch/integration/KeysTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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()));

0 commit comments

Comments
 (0)