[commit-gajim] r11198 - trunk/test/lib

asterix at gajim.org asterix at gajim.org
Mon Apr 6 15:05:03 CEST 2009


Author: asterix
Date: 2009-04-06 15:05:03 +0200 (Mon, 06 Apr 2009)
New Revision: 11198

Modified:
   trunk/test/lib/xmpp_mocks.py
Log:
fix function name


Modified: trunk/test/lib/xmpp_mocks.py
===================================================================
--- trunk/test/lib/xmpp_mocks.py	2009-04-06 10:06:26 UTC (rev 11197)
+++ trunk/test/lib/xmpp_mocks.py	2009-04-06 13:05:03 UTC (rev 11198)
@@ -47,7 +47,7 @@
 		Returns True if event was set, False on timeout
 		'''
 		self._event.wait(IDLEMOCK_TIMEOUT)
-		if self._event.is_set():
+		if self._event.isSet():
 			self._event.clear()
 			return True
 		else:



More information about the Commits mailing list