From 67c6d6da084e99d0cc636a286836b7dc4adf4c87 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Tue, 10 Nov 2020 16:54:53 +0100 Subject: [PATCH] Fix assertion CURA-7833 --- tests/TestMachineManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestMachineManager.py b/tests/TestMachineManager.py index f63944c153..973a2d3d96 100644 --- a/tests/TestMachineManager.py +++ b/tests/TestMachineManager.py @@ -336,7 +336,7 @@ def test_correctPrintSequence_TwoExtrudersEnabled_printSequenceIsOneAtATimeInUse # After the function is called, the user changes container should have tried to remove the print sequence from the # user changes container - mocked_user_changes_container.removeInstance.assert_called_once() + mocked_user_changes_container.removeInstance.assert_called_once_with("print_sequence") def test_correctPrintSequence_TwoExtrudersEnabled_printSequenceIsOneAtATimeInDefinitionChangesSettings(machine_manager, application):