From 429dbfbc9884e920eaecde19abff00137021ffdf Mon Sep 17 00:00:00 2001 From: David Bonnes Date: Wed, 11 Sep 2024 00:49:41 +0100 Subject: [PATCH] lint --- tests/tests/test_installs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/test_installs.py b/tests/tests/test_installs.py index 06cfa398..ddb47270 100644 --- a/tests/tests/test_installs.py +++ b/tests/tests/test_installs.py @@ -52,7 +52,7 @@ def obj_to_dict(obj: object) -> dict[str, Any]: assert yaml.dump(obj_to_dict(gwy), indent=4) == snapshot(name="gateway") tcs = gwy._control_systems[0] - assert yaml.dump(obj_to_dict(tcs), indent=4) == snapshot(name="control_system") + assert yaml.dump(obj_to_dict(tcs), indent=4) == snapshot(name="control_system") dhw = tcs.hotwater assert yaml.dump(obj_to_dict(dhw), indent=4) == snapshot(name="hot_water")