Browse Source

Remove debug print

Contributes to issue CURA-3497.
Ghostkeeper 8 years ago
parent
commit
c5768d89dc
1 changed files with 0 additions and 1 deletions
  1. 0 1
      tests/Settings/TestCuraContainerRegistry.py

+ 0 - 1
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