From 02273a68bb5d5827fcbe2a991ee682aeec2e0e07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Thu, 26 Dec 2024 14:50:33 -0800 Subject: [PATCH] Fix keyword in test --- tests/test_command_engineering_mode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_command_engineering_mode.py b/tests/test_command_engineering_mode.py index 95af87f..befb7a5 100644 --- a/tests/test_command_engineering_mode.py +++ b/tests/test_command_engineering_mode.py @@ -24,7 +24,7 @@ async def test_command_engineering_mode_status(actor: ECPActor): await cmd assert cmd.status.did_succeed - assert cmd.replies.get("engineering_mode") is False + assert cmd.replies.get("engineering_mode_enabled") is False async def test_command_engineering_mode_enable(actor: ECPActor, mocker: MockerFixture):