Skip to content

Commit 629dca8

Browse files
committed
Run all the integration tests - 2023-10-23 PT
1 parent 63e9814 commit 629dca8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

slack-api-client/src/main/java/com/slack/api/methods/response/admin/users/AdminUsersListResponse.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public static class User {
2626
private String id;
2727
private String email;
2828
private String username;
29+
private String fullName;
2930
@SerializedName("is_admin")
3031
private boolean admin;
3132
@SerializedName("is_owner")
@@ -38,6 +39,9 @@ public static class User {
3839
private boolean ultraRestricted;
3940
@SerializedName("is_bot")
4041
private boolean bot;
42+
@SerializedName("is_active")
43+
private boolean active;
4144
private Long expirationTs;
45+
private Integer dateCreated;
4246
}
4347
}

slack-api-client/src/test/java/test_with_remote_apis/methods/files_Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ public void filesUploadV2_two_files() throws Exception {
972972
int count = 0;
973973
ConversationsHistoryResponse history = null;
974974
List<String> actualFileIds = null;
975-
while (count < 10) {
975+
while (count < 20) {
976976
count++;
977977
history = client.conversationsHistory(r -> r
978978
.channel(randomChannelId)

0 commit comments

Comments
 (0)