summaryrefslogtreecommitdiffstats
path: root/tests/test_subprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_subprocess.py')
-rw-r--r--tests/test_subprocess.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_subprocess.py b/tests/test_subprocess.py
index b1c7dde..8495010 100644
--- a/tests/test_subprocess.py
+++ b/tests/test_subprocess.py
@@ -4,7 +4,7 @@ import gc
import unittest
import sys
-from common import gobject
+from common import glib, gobject
class TestProcess(unittest.TestCase):
@@ -14,12 +14,12 @@ class TestProcess(unittest.TestCase):
def testChildWatch(self):
self.data = None
- self.loop = gobject.MainLoop()
+ self.loop = glib.MainLoop()
argv = [sys.executable, '-c', 'import sys']
- pid, stdin, stdout, stderr = gobject.spawn_async(
- argv, flags=gobject.SPAWN_DO_NOT_REAP_CHILD)
+ pid, stdin, stdout, stderr = glib.spawn_async(
+ argv, flags=glib.SPAWN_DO_NOT_REAP_CHILD)
pid.close()
- gobject.child_watch_add(pid, self._child_watch_cb, 12345)
+ glib.child_watch_add(pid, self._child_watch_cb, 12345)
self.loop.run()
self.assertEqual(self.data, 12345)