I wonder what made my commit that in the first place.

This commit is contained in:
Jeremy Fincher 2004-12-20 16:41:37 +00:00
parent 619b604cd0
commit c9360c3990
1 changed files with 0 additions and 6 deletions

View File

@ -275,12 +275,6 @@ class IrcStateTestCase(SupyTestCase):
self.assertEqual(state, state.copy())
def testCopyCopiesChannels(self):
state = irclib.IrcState()
stateCopy = copy.copy(state)
state.channels['#foo'] = None
self.failIf('#foo' in stateCopy.channels)
def testCopyCopiesChannels2(self):
state = irclib.IrcState()
stateCopy = state.copy()
state.channels['#foo'] = None