We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 683d507 commit 42681faCopy full SHA for 42681fa
tests/slack_sdk/web/test_web_client.py
@@ -229,3 +229,11 @@ def test_user_auth_blocks(self):
229
user_auth_blocks=[DividerBlock(), DividerBlock()],
230
)
231
self.assertIsNone(new_message.get("error"))
232
+
233
+ def test_base_url_appends_trailing_slash_issue_15141(self):
234
+ client = self.client
235
+ self.assertEqual(client.base_url, "http://localhost:8888/")
236
237
+ def test_base_url_preserves_trailing_slash_issue_15141(self):
238
+ client = WebClient(base_url="http://localhost:8888/")
239
0 commit comments