Skip to content

Commit 20e2c61

Browse files
committed
fixing linter error
1 parent a0940ac commit 20e2c61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/test_edge_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def test_edge_endpoint_config_from_yaml_requires_exactly_one_input():
238238
def test_edge_endpoint_config_ignores_extra_top_level_fields():
239239
"""Unknown fields are silently ignored for forward compatibility (Postel's Law)."""
240240
config = EdgeEndpointConfig.model_validate({"global_config": {}, "unknown_field": True})
241-
assert config.global_config.refresh_rate == 60.0
241+
assert config.global_config == GlobalConfig()
242242

243243

244244
def test_model_dump_shape_for_edge_endpoint_config():

0 commit comments

Comments
 (0)