File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
slack-api-client/src/test/java/test_with_remote_apis/methods_admin_api Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments