diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d31ff4..b999aea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 1.1.6 ### Added diff --git a/tests/unit/test_agents_wrapper_transport.py b/tests/unit/test_agents_wrapper_transport.py index 88a02d5..7bb1088 100644 --- a/tests/unit/test_agents_wrapper_transport.py +++ b/tests/unit/test_agents_wrapper_transport.py @@ -22,6 +22,7 @@ def _base_agent_json() -> dict[str, object]: return { "id": AGENT_ID, "created_at": "2025-01-01T00:00:00Z", + "updated_at": "2025-01-01T00:00:00Z", "name": "Agent", "disable_cache": False, "cache_failed_jobs": False, diff --git a/tests/unit/test_connections_wrapper_transport.py b/tests/unit/test_connections_wrapper_transport.py index 7ece977..683d186 100644 --- a/tests/unit/test_connections_wrapper_transport.py +++ b/tests/unit/test_connections_wrapper_transport.py @@ -27,6 +27,9 @@ def _connection_json() -> dict[str, object]: "updated_at": "2025-01-01T00:00:00Z", "description": "desc", "config": {"region": "us"}, + "credentials_configured": True, + "dynamic_inputs": {}, + "dynamic_input_test_disabled_reason": None, "status": "active", }