summaryrefslogtreecommitdiffstats
path: root/tests/test_source.py
diff options
context:
space:
mode:
authorJohn Ehresman <jpe@wingware.com>2010-04-15 12:55:34 -0400
committerJohn Ehresman <jpe@wingware.com>2010-04-15 12:55:34 -0400
commitdc91f48833e5f3b94f02a0be16d0d47c10d364f5 (patch)
tree2df70dbf32d1e33f51af596d9ff93d327d761cf8 /tests/test_source.py
parentfb6529e5e6c253d5fcc0038eafc1c1d9e23ca9ae (diff)
downloadpygobject-dc91f48833e5f3b94f02a0be16d0d47c10d364f5.tar.gz
pygobject-dc91f48833e5f3b94f02a0be16d0d47c10d364f5.tar.xz
pygobject-dc91f48833e5f3b94f02a0be16d0d47c10d364f5.zip
Changes for tests to run in python 3
Diffstat (limited to 'tests/test_source.py')
-rw-r--r--tests/test_source.py6
1 files changed, 3 insertions, 3 deletions
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__':