summaryrefslogtreecommitdiff
path: root/tests/test_subprocess.py
diff options
context:
space:
mode:
authorMartin Pitt <martinpitt@gnome.org>2012-10-24 08:05:43 +0200
committerMartin Pitt <martinpitt@gnome.org>2012-10-24 08:05:43 +0200
commitd0a0332feb7946f4bb6b43211d6fe3ae67e7dba5 (patch)
treecb292d036389302b9385e7f7cc5ce68b1cc2e38f /tests/test_subprocess.py
parent4b460e2eb18b8340fe99252063fdb08b0c222968 (diff)
downloadpygobject-d0a0332feb7946f4bb6b43211d6fe3ae67e7dba5.tar.gz
tests: consitent naming style
Stop mixing camel case and underline naming, use the latter consistently in all tests.
Diffstat (limited to 'tests/test_subprocess.py')
-rw-r--r--tests/test_subprocess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_subprocess.py b/tests/test_subprocess.py
index 69f5f4cb..eefa0f87 100644
--- a/tests/test_subprocess.py
+++ b/tests/test_subprocess.py
@@ -12,7 +12,7 @@ class TestProcess(unittest.TestCase):
self.data = data
self.loop.quit()
- def testChildWatch(self):
+ def test_child_watch(self):
self.data = None
self.loop = GLib.MainLoop()
argv = [sys.executable, '-c', 'import sys']