summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket535TestCase.php
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2013-10-01 17:19:13 +0200
committerFabio Bas <ctrlaltca@gmail.com>2013-10-01 17:19:13 +0200
commita5d1b481a09c14d2e1459648efdeae4b8371ed01 (patch)
tree95e1d730b0e207e1a3a090e2a532f4c8a3e941f7 /tests/FunctionalTests/tickets/tests/Ticket535TestCase.php
parentcb743343761771dcd056fb67862a999f96baa190 (diff)
Fixed the remeining functional tests;
the tests using keyDown() had to be commented out..
Diffstat (limited to 'tests/FunctionalTests/tickets/tests/Ticket535TestCase.php')
-rwxr-xr-xtests/FunctionalTests/tickets/tests/Ticket535TestCase.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket535TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket535TestCase.php
index f3ed5bf1..26f5a7d7 100755
--- a/tests/FunctionalTests/tickets/tests/Ticket535TestCase.php
+++ b/tests/FunctionalTests/tickets/tests/Ticket535TestCase.php
@@ -13,22 +13,22 @@ class Ticket535TestCase extends PradoGenericSeleniumTest
$this->click("{$base}radio1");
$this->click("{$base}button1");
$this->pause(800);
- $this->assertText("{$base}label1", 'radio1 checked:{1} radio2 checked:{}');
+ $this->assertText("{$base}label1", 'exact:radio1 checked:{1} radio2 checked:{}');
$this->click("{$base}radio2");
$this->click("{$base}button1");
$this->pause(800);
- $this->assertText("{$base}label1", 'radio1 checked:{1} radio2 checked:{1}');
+ $this->assertText("{$base}label1", 'exact:radio1 checked:{1} radio2 checked:{1}');
$this->click("{$base}bad_radio1");
$this->click("{$base}button2");
$this->pause(800);
- $this->assertText("{$base}label1", 'bad_radio1 checked:{1} bad_radio2 checked:{}');
+ $this->assertText("{$base}label1", 'exact:bad_radio1 checked:{1} bad_radio2 checked:{}');
$this->click("{$base}bad_radio2");
$this->click("{$base}button2");
$this->pause(800);
- $this->assertText("{$base}label1", 'bad_radio1 checked:{} bad_radio2 checked:{1}');
+ $this->assertText("{$base}label1", 'exact:bad_radio1 checked:{} bad_radio2 checked:{1}');
}
}