From de0b26f1e455338556b446a15cee54d4fff2dd90 Mon Sep 17 00:00:00 2001 From: Benjamin Graham Date: Wed, 27 May 2020 09:45:12 -0400 Subject: [PATCH] Removed unnecessary calls to `wait_timeout` --- test/check-application | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/check-application b/test/check-application index 1cb8509..5af1ad5 100755 --- a/test/check-application +++ b/test/check-application @@ -23,7 +23,6 @@ class TestApplication(MachineCase): b.wait_present("#user") b.click(".listing-ct-item") b.click("#player-play-pause") - b.wait_timeout(30000) b.wait_in_text(term_first_line, "localhost") def testFastforwardControls(self): @@ -130,7 +129,6 @@ class TestApplication(MachineCase): # loop until 3 valid frames have passed while "localhost" not in b.text(term_first_line): b.click("#player-skip-frame") - b.wait_timeout(20) b.wait_in_text(term_first_line, "localhost")