From 27f0b57d2bfc943b60e3f1c97bacadbe9443fec7 Mon Sep 17 00:00:00 2001 From: David Logie Date: Wed, 10 Oct 2018 15:40:21 +0100 Subject: [PATCH] Remove pointless print call. --- test/test_dbcore.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_dbcore.py b/test/test_dbcore.py index 4c646802d..89aca442b 100644 --- a/test/test_dbcore.py +++ b/test/test_dbcore.py @@ -285,7 +285,6 @@ class ModelTest(unittest.TestCase): model.some_boolean_field = True for field, type_ in model._fields.items(): - print("%s - %s" % (model[field], field)) self.assertNotEqual(model[field], type_.null) for field, type_ in model._fields.items():