From d707ab6650ae06cc8a434eb1ab9303668a14c19a Mon Sep 17 00:00:00 2001 From: l2and Date: Fri, 31 Jul 2026 10:54:37 -0700 Subject: [PATCH] fix(cli): PR errors on test --- .../tests/unit_tests/test_deploy_helpers.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/libs/cli/tests/unit_tests/test_deploy_helpers.py b/libs/cli/tests/unit_tests/test_deploy_helpers.py index cf46209e6..d93eb0d25 100644 --- a/libs/cli/tests/unit_tests/test_deploy_helpers.py +++ b/libs/cli/tests/unit_tests/test_deploy_helpers.py @@ -665,24 +665,6 @@ class TestSmithDashboardBaseUrl: == "http://localhost:8080" ) - def test_self_hosted_api_host_suffix(self): - assert ( - _smith_dashboard_base_url("https://langsmith.example.com/api-host") - == "https://langsmith.example.com" - ) - - def test_self_hosted_api_host_trailing_slash(self): - assert ( - _smith_dashboard_base_url("https://langsmith.example.com/api-host/") - == "https://langsmith.example.com" - ) - - def test_self_hosted_localhost_api_host(self): - assert ( - _smith_dashboard_base_url("http://localhost:8080/api-host") - == "http://localhost:8080" - ) - class TestResolvePushedImageDigest: """Tests for ``_resolve_pushed_image_digest`` — runner is mocked to