remove a print statement

This commit is contained in:
Stefan Wojcik 2016-12-10 20:59:56 -05:00
parent b32cd19266
commit eb903987eb

View File

@ -411,7 +411,7 @@ class InstanceTest(unittest.TestCase):
del(_document_registry['Place.NicePlace']) del(_document_registry['Place.NicePlace'])
def query_without_importing_nice_place(): def query_without_importing_nice_place():
print Place.objects.all() list(Place.objects.all())
self.assertRaises(NotRegistered, query_without_importing_nice_place) self.assertRaises(NotRegistered, query_without_importing_nice_place)
def test_document_registry_regressions(self): def test_document_registry_regressions(self):