From 9a9a333677b1c1e5814becc205ee9f4fd4d3e33e Mon Sep 17 00:00:00 2001 From: Declan Brady Date: Mon, 30 Mar 2026 13:55:41 -0400 Subject: [PATCH] (chore) fix deployment_history test --- tests/api_resources/test_deployment_history.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/api_resources/test_deployment_history.py b/tests/api_resources/test_deployment_history.py index 49ce089f1..c85be60d6 100644 --- a/tests/api_resources/test_deployment_history.py +++ b/tests/api_resources/test_deployment_history.py @@ -8,12 +8,13 @@ import pytest from agentex import Agentex, AsyncAgentex -from tests.utils import assert_matches_type from agentex.types import ( DeploymentHistoryListResponse, DeploymentHistoryRetrieveResponse, ) +from ..utils import assert_matches_type + base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")