summaryrefslogtreecommitdiff
path: root/tests/test_unknown.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_unknown.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_unknown.py')
-rw-r--r--tests/test_unknown.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_unknown.py b/tests/test_unknown.py
index 8c076a86..ca5d4602 100644
--- a/tests/test_unknown.py
+++ b/tests/test_unknown.py
@@ -10,7 +10,7 @@ TestInterface = GObject.GType.from_name('TestInterface')
class TestUnknown(unittest.TestCase):
- def testFoo(self):
+ def test_unknown_interface(self):
obj = testhelper.get_unknown()
TestUnknownGType = GObject.GType.from_name('TestUnknown')
TestUnknown = GObject.new(TestUnknownGType).__class__