Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/graphics
diff options
context:
space:
mode:
authorBenjamin Berg <benjamin@sipsolutions.net>2008-01-27 19:07:00 (GMT)
committer Benjamin Berg <benjamin@sipsolutions.net>2008-01-27 19:07:00 (GMT)
commitd37e90940c8c8dbcc29a114946e9e4392446e6a7 (patch)
treefb204ac44b5bbf797133760fc19b6395c0406951 /tests/graphics
parent39a0107e0a94a8ce70162dd1beef092050c3da29 (diff)
Fix the testcase for ticket 2855.
Diffstat (limited to 'tests/graphics')
-rw-r--r--tests/graphics/ticket2855.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/graphics/ticket2855.py b/tests/graphics/ticket2855.py
index f680e95..cc4b3c0 100644
--- a/tests/graphics/ticket2855.py
+++ b/tests/graphics/ticket2855.py
@@ -37,7 +37,7 @@ box = gtk.HBox()
toggle = gtk.ToggleButton()
-icon = Icon('go-previous', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
+icon = Icon(icon_name='go-previous', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
toggle.set_image(icon)
box.pack_start(toggle, False)
@@ -45,7 +45,7 @@ toggle.show()
radio = gtk.RadioButton()
-icon = Icon('go-next', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
+icon = Icon(icon_name='go-next', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
radio.set_image(icon)
radio.set_mode(False)