From ec80992ef5b54c443e41ebb91e793384907e68ba Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 20 Dec 2008 21:19:48 +0100 Subject: Fix tevent python module build as part of samba 4. --- lib/tevent/tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/tevent/tests.py') diff --git a/lib/tevent/tests.py b/lib/tevent/tests.py index b14f7e6250..0ec736b359 100644 --- a/lib/tevent/tests.py +++ b/lib/tevent/tests.py @@ -17,7 +17,7 @@ # along with this program. If not, see . # -import events +import tevent as events import unittest # Just test the bindings are there and that calling them doesn't crash @@ -25,7 +25,7 @@ import unittest class EventTestCase(unittest.TestCase): def test_create(self): - self.assertTrue(events.event() is not None) + self.assertTrue(events.EventContext() is not None) def test_loop_wait(self): - self.assertEquals(0, events.event().loop_wait()) + self.assertEquals(0, events.EventContext().loop_wait()) -- cgit