Skip to content

Commit b3fe7ab

Browse files
committed
Fixed Tests
1 parent ca22649 commit b3fe7ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/auth0/client/mgmt/UserAttributeProfilesEntityTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ public void shouldGetAllUserAttributeProfilesWithFilter() throws Exception {
8080
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
8181
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
8282
assertThat(recordedRequest, hasQueryParameter("from", "uap_1234567890"));
83-
assertThat(recordedRequest, hasQueryParameter("take", "10"));
83+
assertThat(recordedRequest, hasQueryParameter("take", "2"));
8484

8585
assertThat(response, is(notNullValue()));
86-
assertThat(response.getItems(), hasSize(2));
86+
assertThat(response.getItems(), hasSize(3));
8787
}
8888

8989
@Test

0 commit comments

Comments
 (0)