From 0dda039e5db43d87b19d07e8ee1a43a398782f67 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Sun, 11 Nov 2012 20:07:43 +0000 Subject: Remove now unnecessary sleeps --- (limited to 'tests/shell.py') diff --git a/tests/shell.py b/tests/shell.py index 034e316..c4b3f40 100644 --- a/tests/shell.py +++ b/tests/shell.py @@ -1,5 +1,4 @@ import sys -from time import sleep import tree @@ -40,8 +39,6 @@ def launch_and_stop_activity(activity_name): icon.click() - sleep(10) - print "Stopping %s" % activity_name if activity_name in ACTIVITIES_WITH_OBJECT_CHOOSER: @@ -62,8 +59,6 @@ def go_to_list_view(): done_button = shell.find_child(name="Done", role_name="push button") done_button.do_action("click") - sleep(10) - radio_button = shell.find_child(name="List view", role_name="radio button") radio_button.do_action("click") @@ -71,7 +66,6 @@ def main(): go_to_list_view() for activity in build_activities_list(): - sleep(10) launch_and_stop_activity(activity) main() -- cgit v0.9.1