summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-02-13 19:15:54 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2019-02-13 19:15:54 +0100
commit5423678ea6a06bec187c173dccc9763307478ffd (patch)
treede9505970a608600968d3d598e64b08e63ebe308 /tests
parent0b0fe8cef03db692edd2574900d5cbfa0d70da28 (diff)
downloadpygobject-5423678ea6a06bec187c173dccc9763307478ffd.tar.gz
GTK+ -> GTK
Diffstat (limited to 'tests')
-rw-r--r--tests/test_overrides_gtk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_overrides_gtk.py b/tests/test_overrides_gtk.py
index fe98051c..627d5760 100644
--- a/tests/test_overrides_gtk.py
+++ b/tests/test_overrides_gtk.py
@@ -532,7 +532,7 @@ class TestGtk(unittest.TestCase):
self.assertTrue(isinstance(button, Gtk.Widget))
if Gtk_version != "4.0":
- # Using stock items causes hard warning in devel versions of GTK+.
+ # Using stock items causes hard warning in devel versions of GTK.
with capture_glib_warnings(allow_warnings=True):
button = Gtk.Button.new_from_stock(Gtk.STOCK_CLOSE)
@@ -771,7 +771,7 @@ class TestGtk(unittest.TestCase):
def test_toolbutton(self):
# PyGTK compat
- # Using stock items causes hard warning in devel versions of GTK+.
+ # Using stock items causes hard warning in devel versions of GTK.
with capture_glib_warnings(allow_warnings=True):
button = Gtk.ToolButton()
self.assertEqual(button.props.stock_id, None)