Removed debug print

This commit is contained in:
Ross Lawley 2011-10-27 01:18:32 -07:00
parent 5eb63cfa30
commit 7cd22aaf83

View File

@ -17,7 +17,6 @@ class SignalTests(unittest.TestCase):
global signal_output global signal_output
signal_output = [] signal_output = []
fn(*args, **kwargs) fn(*args, **kwargs)
print signal_output
return signal_output return signal_output
def setUp(self): def setUp(self):
@ -213,9 +212,9 @@ class SignalTests(unittest.TestCase):
# The output of this signal is not entirely deterministic. The reloaded # The output of this signal is not entirely deterministic. The reloaded
# object will have an object ID. Hence, we only check part of the output # object will have an object ID. Hence, we only check part of the output
self.assertEquals(signal_output[3], self.assertEquals(signal_output[3],
"pre_bulk_insert signal, [<Author: Bill Shakespeare>]") "pre_bulk_insert signal, [<Author: Bill Shakespeare>]")
self.assertEquals(signal_output[-2:], self.assertEquals(signal_output[-2:],
["post_bulk_insert signal, [<Author: Bill Shakespeare>]", ["post_bulk_insert signal, [<Author: Bill Shakespeare>]",
"Is loaded",]) "Is loaded",])