summaryrefslogtreecommitdiffstats
path: root/tests/test_mainloop.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_mainloop.py')
-rw-r--r--tests/test_mainloop.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_mainloop.py b/tests/test_mainloop.py
index 44d6937..8294642 100644
--- a/tests/test_mainloop.py
+++ b/tests/test_mainloop.py
@@ -22,7 +22,7 @@ class TestMainLoop(unittest.TestCase):
def child_died(pid, status, loop):
loop.quit()
raise Exception("deadbabe")
-
+
loop = gobject.MainLoop()
gobject.child_watch_add(pid, child_died, loop)
@@ -40,7 +40,7 @@ class TestMainLoop(unittest.TestCase):
loop.run()
except:
got_exception = True
-
+
#
# The exception should be handled (by printing it)
# immediately on return from child_died() rather