diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-10-20 21:05:09 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-10-20 21:05:09 +0200 |
commit | d1612d99b95fed9b053ebdb5e4c12f30aeb69203 (patch) | |
tree | 2085175a9163f35db32d48cfde3187ca4a165ead | |
parent | 9c107bd1fc32c2afe05d514e9d8332223ff6507a (diff) | |
download | rpg-d1612d99b95fed9b053ebdb5e4c12f30aeb69203.tar.gz rpg-d1612d99b95fed9b053ebdb5e4c12f30aeb69203.tar.bz2 |
escaped another $ in mailer test
-rw-r--r-- | _test/tests/inc/mailer.test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/tests/inc/mailer.test.php b/_test/tests/inc/mailer.test.php index dc234232f..bac0c39ba 100644 --- a/_test/tests/inc/mailer.test.php +++ b/_test/tests/inc/mailer.test.php @@ -63,7 +63,7 @@ class mailer_test extends DokuWikiTest { $this->assertArrayHasKey('From',$headers); $this->assertEquals('Ths neeedsserious cleaning.',$headers['From']); $this->assertArrayHasKey('Bad',$headers); - $this->assertEquals("Thös ne\needs\x00serious cleaning$§%.",$headers['Bad']); + $this->assertEquals("Thös ne\needs\x00serious cleaning\$§%.",$headers['Bad']); $this->assertArrayHasKey('Weird+foo.-_@bar',$headers); // unset a header again |