From a50e30c28bc7cbc24a6ff9e504d92112ae51bf0f Mon Sep 17 00:00:00 2001 From: Harshit Ojha <92013456+harshit-ojha0324@users.noreply.github.com> Date: Sat, 4 Jul 2026 17:35:52 -0400 Subject: [PATCH] test(integrations): drop redundant trailing-slash assertion The exact-equality assert on the line above (requested_url == WEBHOOK_BASE) already implies the URL has no trailing slash, so the endswith check adds nothing. --- tests/test_integrations_url_join.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_integrations_url_join.py b/tests/test_integrations_url_join.py index 9a6359038..a5e19722e 100644 --- a/tests/test_integrations_url_join.py +++ b/tests/test_integrations_url_join.py @@ -114,4 +114,3 @@ async def test_api_call_root_path_has_no_trailing_slash(): assert result.get("exit_code") == 0 requested_url = mock_client.request.call_args.args[1] assert requested_url == WEBHOOK_BASE - assert not requested_url.endswith("/")