From dc91f48833e5f3b94f02a0be16d0d47c10d364f5 Mon Sep 17 00:00:00 2001 From: John Ehresman Date: Thu, 15 Apr 2010 12:55:34 -0400 Subject: Changes for tests to run in python 3 --- tests/test_source.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_source.py') diff --git a/tests/test_source.py b/tests/test_source.py index abe2f69..e32ce1e 100644 --- a/tests/test_source.py +++ b/tests/test_source.py @@ -91,9 +91,9 @@ class TestSource(unittest.TestCase): class TestTimeout(unittest.TestCase): - def test504337(self): - timeout_source = glib.Timeout(20) - idle_source = glib.Idle() + def test504337(self): + timeout_source = glib.Timeout(20) + idle_source = glib.Idle() if __name__ == '__main__': -- cgit