summaryrefslogtreecommitdiff
path: root/tests/test_everything.py
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2015-01-27 19:13:54 +0100
committerChristoph Reiter <creiter@src.gnome.org>2015-03-03 13:01:23 +0100
commita10df7d28c01d70ee33d8e4e9ddaa23f1990ca60 (patch)
treeacff691a02a188e314469793f0aa87e6da8ab4c5 /tests/test_everything.py
parent747fc3754c296ad5481d354bbf35521f886c5c61 (diff)
downloadpygobject-a10df7d28c01d70ee33d8e4e9ddaa23f1990ca60.tar.gz
Add namespace and container name to callable cache and include them in all warnings/error messages.
https://bugzilla.gnome.org/show_bug.cgi?id=743468
Diffstat (limited to 'tests/test_everything.py')
-rw-r--r--tests/test_everything.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_everything.py b/tests/test_everything.py
index 88b6da14..b8a37f1f 100644
--- a/tests/test_everything.py
+++ b/tests/test_everything.py
@@ -322,7 +322,7 @@ class TestEverything(unittest.TestCase):
Everything.test_int8()
except TypeError:
(e_type, e) = sys.exc_info()[:2]
- self.assertEqual(e.args, ("test_int8() takes exactly 1 argument (0 given)",))
+ self.assertEqual(e.args, ("Regress.test_int8() takes exactly 1 argument (0 given)",))
def test_gtypes(self):
gchararray_gtype = GObject.type_from_name('gchararray')