fixed stream tests

This commit is contained in:
Nathan Fritz 2010-10-14 15:53:10 -07:00
parent dc001bb201
commit 8468332381

View file

@ -281,9 +281,9 @@ class SleekTest(unittest.TestCase):
self.xmpp.set_socket(TestSocket()) self.xmpp.set_socket(TestSocket())
# Simulate connecting for mock sockets. # Simulate connecting for mock sockets.
self.xmpp.state.set('reconnect', False) self.xmpp.auto_reconnect = False
self.xmpp.state.set('is client', True) self.xmpp.is_client = True
self.xmpp.state.set('connected', True) self.xmpp.state._set_state('connected')
# Must have the stream header ready for xmpp.process() to work. # Must have the stream header ready for xmpp.process() to work.
if not header: if not header: