From: Roland Mas Date: Mon, 8 Oct 2012 18:35:38 +0000 (+0000) Subject: Sleep longer in the MoinMoin tests X-Git-Tag: v5.3-rc1~1906 X-Git-Url: https://scm.fusionforge.org/anonscm/gitweb?p=fusionforge%2Ffusionforge.git;a=commitdiff_plain;h=f110cdcfa127f346807d86cf6682c71745ce337f Sleep longer in the MoinMoin tests --- diff --git a/tests/func/PluginsMoinMoin/moinmoinTest.php b/tests/func/PluginsMoinMoin/moinmoinTest.php index 2a4f21b784..58fa7158d5 100644 --- a/tests/func/PluginsMoinMoin/moinmoinTest.php +++ b/tests/func/PluginsMoinMoin/moinmoinTest.php @@ -48,17 +48,17 @@ class PluginMoinMoin extends FForge_SeleniumTestCase $this->assertFalse($this->isTextPresent("Wiki not created yet")); $this->click("link=Create New Page"); - sleep(5); // Grmf. + sleep(10); // Grmf. $this->assertFalse($this->isTextPresent("You are not allowed")); $this->type("//textarea[@id='editor-textarea']", "Pardon me, boy Is that the Chattanooga choo choo?"); $this->click("//input[@name='button_save']"); - sleep(5); // Grmf. + sleep(10); // Grmf. $this->gotoProject('ProjectA'); $this->click("link=MoinMoinWiki"); - sleep(5); // Grmf. + sleep(10); // Grmf. $this->assertTrue($this->isTextPresent("Chattanooga")); } }