Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKostas Karmas <konskarm@gmail.com>2020-11-10 18:54:53 +0300
committerKostas Karmas <konskarm@gmail.com>2020-11-10 18:54:53 +0300
commit67c6d6da084e99d0cc636a286836b7dc4adf4c87 (patch)
treea7ba0171b3a3821398e9424dd4b4684e40cb52ab /tests
parent644c3443b14ee88b1bc0393ca501cae7ab0956c5 (diff)
Fix assertion
CURA-7833
Diffstat (limited to 'tests')
-rw-r--r--tests/TestMachineManager.py2
1 files changed, 1 insertions, 1 deletions
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):