From c5768d89dcd0a21ce154ec33632fa43c13a3f27c Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 22 Mar 2017 15:12:46 +0100 Subject: [PATCH] Remove debug print Contributes to issue CURA-3497. --- tests/Settings/TestCuraContainerRegistry.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/Settings/TestCuraContainerRegistry.py b/tests/Settings/TestCuraContainerRegistry.py index 157e6a03f9..20a723d2aa 100644 --- a/tests/Settings/TestCuraContainerRegistry.py +++ b/tests/Settings/TestCuraContainerRegistry.py @@ -41,7 +41,6 @@ def test_loadTypes(filename, output_class, container_registry): #Check whether the resulting type was correct. stack_id = filename.split(".")[0] for container in container_registry._containers: #Stupid ContainerRegistry class doesn't expose any way of getting at this except by prodding the privates. - print(container.getId(), "==", stack_id) if container.getId() == stack_id: #This is the one we're testing. assert type(container) == output_class break