Skip to content

Commit be22856

Browse files
clean up test
1 parent a0a3fcb commit be22856

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

integration_tests/web/test_admin_conversations_bulk.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@
66

77
from integration_tests.env_variable_names import (
88
SLACK_SDK_TEST_GRID_ORG_ADMIN_USER_TOKEN,
9-
SLACK_SDK_TEST_GRID_IDP_USERGROUP_ID,
109
SLACK_SDK_TEST_GRID_TEAM_ID_2,
1110
SLACK_SDK_TEST_GRID_TEAM_ID,
12-
SLACK_SDK_TEST_GRID_USER_ID,
1311
)
1412
from integration_tests.helpers import async_test
1513
from slack_sdk.web import WebClient, SlackResponse
@@ -20,9 +18,6 @@
2018
class TestWebClient(unittest.TestCase):
2119
"""Runs integration tests with real Slack API"""
2220

23-
# TODO: admin_conversations_disconnectShared - not_allowed_token_type
24-
# TODO: admin_conversations_ekm_listOriginalConnectedChannelInfo - enable the feature
25-
2621
def setUp(self):
2722
self.logger = logging.getLogger(__name__)
2823
self.org_admin_token = os.environ[SLACK_SDK_TEST_GRID_ORG_ADMIN_USER_TOKEN]
@@ -31,10 +26,7 @@ def setUp(self):
3126

3227
self.team_id = os.environ[SLACK_SDK_TEST_GRID_TEAM_ID]
3328
self.team_id_2 = os.environ[SLACK_SDK_TEST_GRID_TEAM_ID_2]
34-
self.idp_group_id = os.environ[SLACK_SDK_TEST_GRID_IDP_USERGROUP_ID]
35-
self.user_id = os.environ[SLACK_SDK_TEST_GRID_USER_ID]
3629
self.channel_name = f"test-channel-{int(round(time.time() * 1000))}"
37-
self.channel_rename = f"test-channel-renamed-{int(round(time.time() * 1000))}"
3830

3931
def tearDown(self):
4032
pass

0 commit comments

Comments
 (0)