Remove debug print

Contributes to issue CURA-3497.
This commit is contained in:
Ghostkeeper 2017-03-22 15:12:46 +01:00
parent c91765c1ae
commit c5768d89dc
No known key found for this signature in database
GPG key ID: C5F96EE2BC0F7E75

View file

@ -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