summaryrefslogtreecommitdiff
path: root/tests/test_thread.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_thread.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_thread.py')
-rw-r--r--tests/test_thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_thread.py b/tests/test_thread.py
index b707bc46..3d0557e6 100644
--- a/tests/test_thread.py
+++ b/tests/test_thread.py
@@ -20,7 +20,7 @@ class TestThread(unittest.TestCase):
self.obj.connect('from-thread', self.from_thread_cb)
self.obj.emit('emit-signal')
- def testExtensionModule(self):
+ def test_extension_module(self):
GLib.idle_add(self.idle_cb)
GLib.timeout_add(50, self.timeout_cb)
self.main.run()