diff options
| author | Chris Townsend <Christopher.Townsend@canonical.com> | 2013-03-13 14:07:17 -0400 |
|---|---|---|
| committer | Chris Townsend <Christopher.Townsend@canonical.com> | 2013-03-13 14:07:17 -0400 |
| commit | 4f0350c92658501c8021f325254159ca6b9fcedd (patch) | |
| tree | d73c661f10026e8746c704d694fb2cd8f3f53e0b /tests | |
| parent | 31c251dba82f7d5d2a757e28a2b60b357672e5c5 (diff) | |
* Change the 30 to SCROLL_FPS to make it more clear what this value is indicating.
* Change the AP test to use a tuple instead of a list. (bzr r3191.1.3)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/autopilot/unity/tests/launcher/test_scroll.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/autopilot/unity/tests/launcher/test_scroll.py b/tests/autopilot/unity/tests/launcher/test_scroll.py index 721abe8e7..d376e066f 100644 --- a/tests/autopilot/unity/tests/launcher/test_scroll.py +++ b/tests/autopilot/unity/tests/launcher/test_scroll.py @@ -22,14 +22,8 @@ class LauncherScrollTests(LauncherTestCase): def open_apps_in_launcher(self): """Opens some apps in order to get icon stacking in the Launcher""" - apps = [ - ("Calculator"), - ("Mahjongg"), - ("Text Editor"), - ("Character Map"), - ("Terminal"), - ("Remmina") - ] + apps = ("Calculator", "Mahjongg", "Text Editor", "Character Map", "Terminal", "Remmina") + for app in apps: self.start_app_window(app) |
