Skip to content

Commit 1a4c198

Browse files
committed
Run all the integration tests - 2023-09-26 PT
1 parent 5ae0ed4 commit 1a4c198

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

slack-api-client/src/test/java/test_with_remote_apis/methods_admin_api/AdminApi_conversations_Test.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public void search() throws Exception {
6262
.searchChannelTypes(Arrays.asList("exclude_archived", "private_exclude"))
6363
).get();
6464
assertThat(search.getError(), is(nullValue()));
65+
// TODO: 2023-09-26: unexpectedly zero result
6566
assertThat(search.getConversations().size(), is(1));
6667

6768
AdminConversationsSearchResponse search2 = methodsAsync.adminConversationsSearch(r -> r
@@ -72,6 +73,7 @@ public void search() throws Exception {
7273
.cursor(search.getNextCursor())
7374
).get();
7475
assertThat(search2.getError(), is(nullValue()));
76+
// TODO: 2023-09-26: unexpectedly zero result
7577
assertThat(search2.getConversations().size(), is(1));
7678
}
7779
}

slack-api-client/src/test/java/test_with_remote_apis/methods_admin_api/AdminApi_workflows_Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void adminWorkflowsCollaborators() throws Exception {
4242
AdminWorkflowsSearchResponse searchResult = methodsAsync.adminWorkflowsSearch(r -> r
4343
.limit(30)
4444
).get();
45-
// 2023-09-26: the server side returns "internal_error"
45+
// TODO: 2023-09-25: the server side returns "internal_error"
4646
assertThat(searchResult.getError(), is(nullValue()));
4747

4848
// TODO: make this more stable
@@ -68,7 +68,7 @@ public void adminWorkflowsPermissions() throws Exception {
6868
AdminWorkflowsSearchResponse searchResult = methodsAsync.adminWorkflowsSearch(r -> r
6969
.limit(30)
7070
).get();
71-
// 2023-09-26: the server side returns "internal_error"
71+
// TODO: 2023-09-25: the server side returns "internal_error"
7272
assertThat(searchResult.getError(), is(nullValue()));
7373

7474
AdminWorkflowsPermissionsLookupResponse result = methodsAsync.adminWorkflowsPermissionsLookup(r -> r

0 commit comments

Comments
 (0)