summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests
diff options
context:
space:
mode:
authorxue <>2007-03-26 00:29:27 +0000
committerxue <>2007-03-26 00:29:27 +0000
commitb0ee562087936a5b139457494f18bbf8362e257e (patch)
treeefe38a7e5ad1c4f0e70091670624f20f67d799d6 /tests/FunctionalTests/tickets/tests
parent0f00e85e311955b3f84dde559da6b5a2ab5c3cda (diff)
merge from 3.0 branch till 1771.
Diffstat (limited to 'tests/FunctionalTests/tickets/tests')
-rw-r--r--tests/FunctionalTests/tickets/tests/Ticket205TestCase.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket205TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket205TestCase.php
index 85785697..d883cce4 100644
--- a/tests/FunctionalTests/tickets/tests/Ticket205TestCase.php
+++ b/tests/FunctionalTests/tickets/tests/Ticket205TestCase.php
@@ -8,14 +8,14 @@ class Ticket205TestCase extends SeleniumTestCase
$this->open("tickets/index.php?page=Ticket205");
$this->assertTitle("Verifying Ticket 205");
$this->assertNotVisible("{$base}validator1");
-
+
$this->type("{$base}textbox1", "test");
$this->click("{$base}button1");
- $this->assertVisible("{$base}validator1");
$this->assertAlert("error");
-
+ $this->assertVisible("{$base}validator1");
+
$this->type("{$base}textbox1", "Prado");
- $this->clickAndWait("{$base}button1");
+ $this->clickAndWait("{$base}button1");
$this->assertNotVisible("{$base}validator1");
}
}