diff options
author | xue <> | 2006-02-17 21:14:12 +0000 |
---|---|---|
committer | xue <> | 2006-02-17 21:14:12 +0000 |
commit | cba0c1b472cec22e4ffed2b3b084bea27cd26582 (patch) | |
tree | 9a8f8383a93ebb011757423bfc8b39066cb017ea /tests | |
parent | 35836e45fab30dc4c31a4f51e32b551181e7ec86 (diff) |
Fixed #54.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket54Master.tpl | 2 | ||||
-rw-r--r-- | tests/FunctionalTests/tickets/tests/Ticket54TestCase.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket54Master.tpl b/tests/FunctionalTests/tickets/protected/pages/Ticket54Master.tpl index af57b6c7..5838aa5b 100644 --- a/tests/FunctionalTests/tickets/protected/pages/Ticket54Master.tpl +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket54Master.tpl @@ -1 +1 @@ -|<com:TContentPlaceholder ID="A" />||<com:TContentPlaceholder ID="B" />||<com:TContentPlaceholder ID="C" />|
+|<com:TContentPlaceholder ID="A" />|a|<com:TContentPlaceholder ID="B" />|b|<com:TContentPlaceholder ID="C" />|
diff --git a/tests/FunctionalTests/tickets/tests/Ticket54TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket54TestCase.php index c131a67d..1698f1cb 100644 --- a/tests/FunctionalTests/tickets/tests/Ticket54TestCase.php +++ b/tests/FunctionalTests/tickets/tests/Ticket54TestCase.php @@ -5,7 +5,7 @@ class Ticket54TestCase extends SeleniumTestCase function test()
{
$this->open('tickets/index.php?page=Ticket54');
- $this->verifyTextPresent("|A||B||C|", "");
+ $this->verifyTextPresent("|A|a|B|b|C|", "");
}
}
|