mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Removed some debug.printfs.
This commit is contained in:
parent
cdd180a37c
commit
7a51fccaf9
@ -102,10 +102,8 @@ class ChannelTestCase(unittest.TestCase):
|
||||
def testPickleCopy(self):
|
||||
c = irclib.Channel()
|
||||
for name in c.__slots__:
|
||||
debug.printf('%s %s' % (name, getattr(c, name)))
|
||||
c1 = pickle.loads(pickle.dumps(c))
|
||||
for name in c1.__slots__:
|
||||
debug.printf('%s %s' % (name, getattr(c1, name)))
|
||||
self.assertEqual(pickle.loads(pickle.dumps(c)), c)
|
||||
|
||||
def testAddUser(self):
|
||||
|
Loading…
Reference in New Issue
Block a user