diff options
author | John Ehresman <jpe@wingware.com> | 2010-04-15 12:55:34 -0400 |
---|---|---|
committer | John Ehresman <jpe@wingware.com> | 2010-04-15 12:55:34 -0400 |
commit | dc91f48833e5f3b94f02a0be16d0d47c10d364f5 (patch) | |
tree | 2df70dbf32d1e33f51af596d9ff93d327d761cf8 /tests/test_source.py | |
parent | fb6529e5e6c253d5fcc0038eafc1c1d9e23ca9ae (diff) | |
download | pygobject-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.py | 6 |
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__': |