From 8717eecb3168cacfcec273d64754c6421988280d Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Fri, 1 Dec 2023 19:20:54 -0500 Subject: [PATCH] Fix copy-paste error. --- .../protocol_engine/state/test_addressable_area_view.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/tests/opentrons/protocol_engine/state/test_addressable_area_view.py b/api/tests/opentrons/protocol_engine/state/test_addressable_area_view.py index 80cb4ea57be3..dba824e118f2 100644 --- a/api/tests/opentrons/protocol_engine/state/test_addressable_area_view.py +++ b/api/tests/opentrons/protocol_engine/state/test_addressable_area_view.py @@ -30,8 +30,10 @@ @pytest.fixture(autouse=True) -def patch_mock_move_types(decoy: Decoy, monkeypatch: pytest.MonkeyPatch) -> None: - """Mock out move_types.py functions.""" +def patch_mock_deck_configuration_provider( + decoy: Decoy, monkeypatch: pytest.MonkeyPatch +) -> None: + """Mock out deck_configuration_provider.py functions.""" for name, func in inspect.getmembers( deck_configuration_provider, inspect.isfunction ):