diff options
author | Alexander Kampmann <programmer@nurfuerspam.de> | 2012-03-09 12:18:37 +0100 |
---|---|---|
committer | Alexander Kampmann <programmer@nurfuerspam.de> | 2012-03-09 12:18:37 +0100 |
commit | 21589c5eced7869d7105fa439c433e6a12c89531 (patch) | |
tree | ae38bb34aa4aaea1778058dd4cf97001115c41d8 /tests | |
parent | af34cf019c5742abadab19586f3931353d8d3ff8 (diff) | |
download | volse-hubzilla-21589c5eced7869d7105fa439c433e6a12c89531.tar.gz volse-hubzilla-21589c5eced7869d7105fa439c433e6a12c89531.tar.bz2 volse-hubzilla-21589c5eced7869d7105fa439c433e6a12c89531.zip |
changed a test string
Diffstat (limited to 'tests')
-rw-r--r-- | tests/xss_filter_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/xss_filter_test.php b/tests/xss_filter_test.php index 00e97cf98..35d3b1be9 100644 --- a/tests/xss_filter_test.php +++ b/tests/xss_filter_test.php @@ -225,11 +225,11 @@ class AntiXSSTest extends PHPUnit_Framework_TestCase { } public function testGetTagsPersonOnly() { - $text="@Mike I saw the Theme Dev group was created."; + $text="@Test I saw the Theme Dev group was created."; $tags=get_tags($text);
- $this->assertEquals("@Mike", $tags[0]); + $this->assertEquals("@Test", $tags[0]); } public function testGetTags2Persons1TagSpecialChars() {
|