Skip to content

Commit e637b60

Browse files
committed
Updated tests/unit/models/config/test_dump_configuration.py
1 parent 6233965 commit e637b60

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/unit/models/config/test_dump_configuration.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
)
2424

2525

26-
def test_dump_configuration(tmp_path) -> None:
26+
def test_dump_configuration(tmp_path: Path) -> None:
2727
"""
2828
Test that the Configuration object can be serialized to a JSON file and
2929
that the resulting file contains all expected sections and values.
@@ -186,7 +186,7 @@ def test_dump_configuration(tmp_path) -> None:
186186
}
187187

188188

189-
def test_dump_configuration_with_one_mcp_server(tmp_path) -> None:
189+
def test_dump_configuration_with_one_mcp_server(tmp_path: Path) -> None:
190190
"""
191191
Verify that a configuration with a single MCP server can be
192192
serialized to JSON and that all expected fields and values are
@@ -234,7 +234,7 @@ def test_dump_configuration_with_one_mcp_server(tmp_path) -> None:
234234
]
235235

236236

237-
def test_dump_configuration_with_more_mcp_servers(tmp_path) -> None:
237+
def test_dump_configuration_with_more_mcp_servers(tmp_path: Path) -> None:
238238
"""
239239
Test that a configuration with multiple MCP servers can be
240240
serialized to JSON and that all server entries are correctly
@@ -301,7 +301,7 @@ def test_dump_configuration_with_more_mcp_servers(tmp_path) -> None:
301301
]
302302

303303

304-
def test_dump_configuration_with_quota_limiters(tmp_path) -> None:
304+
def test_dump_configuration_with_quota_limiters(tmp_path: Path) -> None:
305305
"""
306306
Test that the Configuration object can be serialized to a JSON file and
307307
that the resulting file contains all expected sections and values.

0 commit comments

Comments
 (0)