summaryrefslogtreecommitdiff
path: root/tests/test_gi.py
diff options
context:
space:
mode:
authorChristoph Reiter <creiter@src.gnome.org>2017-03-27 10:14:22 +0200
committerChristoph Reiter <creiter@src.gnome.org>2017-04-01 11:40:55 +0200
commitb2529624b3925adbef2671025e08cbf747f162e8 (patch)
tree85ff9ac56ea14d984ee911fee6a6fb9e1a21115c /tests/test_gi.py
parentbdfafd2bdc84d961bd2df43d8dee690177c77a56 (diff)
downloadpygobject-b2529624b3925adbef2671025e08cbf747f162e8.tar.gz
Remove gi._gi._gobject and gi._gobject modules
Expose everything from _gi._gobject in _gi instead. This does not move any code around, just removes the module. Also removes the gi._gobject package and replaces it with a small dummy module in gi.__init__.py https://bugzilla.gnome.org/show_bug.cgi?id=735206
Diffstat (limited to 'tests/test_gi.py')
-rw-r--r--tests/test_gi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_gi.py b/tests/test_gi.py
index ffad4ad9..16d0d53a 100644
--- a/tests/test_gi.py
+++ b/tests/test_gi.py
@@ -2707,7 +2707,7 @@ class TestMRO(unittest.TestCase):
pass
expected = (E, D, B, C, A, GIMarshallingTests.Object,
- GObject.Object, GObject.Object.__base__, gi._gi._gobject.GObject,
+ GObject.Object, GObject.Object.__base__, gi._gi.GObject,
object)
self.assertEqual(expected, E.__mro__)