Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-09-24 00:11:43 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-09-24 00:11:43 (GMT)
commit24987a8de122191f7d655466b080e0d0ff01a995 (patch)
tree8f4086dd198990266e4d461f4676f1915190aa44 /tests
parentfc000346e45b352d58d2ce4fa8388ebd5f46f06b (diff)
Adapt to the new icons
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test-icons.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test-icons.py b/tests/test-icons.py
index 3a2b47d..ff578e0 100755
--- a/tests/test-icons.py
+++ b/tests/test-icons.py
@@ -35,13 +35,13 @@ root.add_child(item)
icon_names = [ 'stock-buddy', 'activity-groupchat', 'activity-web']
k = 0
-while k < 17:
+while k < 12:
i = 0
- while i < 23:
+ while i < 16:
color = IconColor.IconColor()
icon_name_n = int(random.random() * len(icon_names))
- icon = IconItem(x=i * 50 + 20, y=k * 50 + 10,
- size=46, color=color,
+ icon = IconItem(x=i * 75, y=k * 75,
+ size=75, color=color,
icon_name=icon_names[icon_name_n])
root.add_child(icon)
i += 1