summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/tickets/tests/Ticket72TestCase.php')
-rwxr-xr-xtests/FunctionalTests/tickets/tests/Ticket72TestCase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
index 91fc9420..b1c576be 100755
--- a/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
+++ b/tests/FunctionalTests/tickets/tests/Ticket72TestCase.php
@@ -8,7 +8,7 @@ class Ticket72TestCase extends PradoGenericSelenium2Test
$this->type("ctl0\$Content\$K1", "abc");
$this->type("ctl0\$Content\$K2", "efg");
$this->byXPath("//input[@type='submit' and @value='Send']")->click();
- $this->assertContains("efg", $this->source());
- $this->assertNotContains("abcefg", $this->source());
+ $this->assertSourceContains("efg");
+ $this->assertSourceNotContains("abcefg");
}
}