From c9360c3990f32e1bafe88e066cf1836b3028e58e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 20 Dec 2004 16:41:37 +0000 Subject: [PATCH] I wonder what made my commit that in the first place. --- test/test_irclib.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/test_irclib.py b/test/test_irclib.py index d21f20e17..4d9c1f9dd 100644 --- a/test/test_irclib.py +++ b/test/test_irclib.py @@ -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