From 4db7c6ae66f6841afc407d0a4431a28333292b8c Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 12 Apr 2017 09:47:44 +0200 Subject: [PATCH] Let test_setQualityChangesByIdExists use new container registry functionality It sets the container it expects beforehand and tests for its ID. Contributes to issue CURA-3497. --- tests/Settings/TestExtruderStack.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/tests/Settings/TestExtruderStack.py b/tests/Settings/TestExtruderStack.py index aed69f717a..fff2283c93 100644 --- a/tests/Settings/TestExtruderStack.py +++ b/tests/Settings/TestExtruderStack.py @@ -389,15 +389,10 @@ def test_setQualityByIdDoesntExist(extruder_stack): ## Tests setting quality changes by specifying an ID of a quality change that # exists. -@pytest.mark.skip def test_setQualityChangesByIdExists(extruder_stack, container_registry): - original_container_registry = UM.Settings.ContainerStack._containerRegistry - UM.Settings.ContainerStack._containerRegistry = container_registry #Always has all the profiles you ask of. - - extruder_stack.setQualityChangesById("some_quality_changes") #The container registry always has a container with the ID. - - #Restore. - UM.Settings.ContainerStack._containerRegistry = original_container_registry + container_registry.return_value = getInstanceContainer(container_type = "quality_changes") + extruder_stack.setQualityChangesById("InstanceContainer") + assert extruder_stack.qualityChanges.getId() == "InstanceContainer" ## Tests setting quality changes by specifying an ID of a quality change that # doesn't exist.