Skip to content

Commit

Permalink
Run all the integration tests - 2024-09-24 PT
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Sep 25, 2024
1 parent a6f4061 commit 478483c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,11 @@ public void channelConversation() throws Exception {
assertThat(membersResponse.getResponseMetadata(), is(notNullValue()));

// Using async client to avoid an exception due to rate limited errors
UsersListResponse usersListResponse = slack.methodsAsync().usersList(r -> r
.token(botToken)).get();
UsersListResponse usersListResponse = slack.methodsAsync().usersList(r -> r.token(botToken)).get();
String invitee_ = null;
for (User u : usersListResponse.getMembers()) {
if (!"USLACKBOT".equals(u.getId())
&& !u.isBot()
&& !membersResponse.getMembers().contains(u.getId())
&& !u.isRestricted()
&& !u.isUltraRestricted()) {
Expand Down

0 comments on commit 478483c

Please sign in to comment.