diff options
author | uckelman <uckelman@nomic.net> | 2010-04-24 17:01:13 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-24 17:01:13 +0000 |
commit | 97fda1bc5f653f4612833de518fe0c4a4fc52866 (patch) | |
tree | 7fc66cce0f914ed986d3cfa8bc6ed6d54473fcea /test/unbbcodeTest.php | |
parent | 5884e8868b3fd6a59efeb568f551547a9dc507d1 (diff) |
Maybe use double quotes?
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6737 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test/unbbcodeTest.php')
-rw-r--r-- | test/unbbcodeTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unbbcodeTest.php b/test/unbbcodeTest.php index 973352f..4933490 100644 --- a/test/unbbcodeTest.php +++ b/test/unbbcodeTest.php @@ -20,9 +20,9 @@ class unbbcodeTest extends PHPUnit_Framework_TestCase { try { require_once("src/unbbcode.php"); - \$msg = \\'$msg\\'; - \$uid = \\'$uid\\'; - \$bitfield = \\'$bitfield\\'; + \$msg = "$msg"; + \$uid = "$uid"; + \$bitfield = "$bitfield"; \$unbbcode = new unbbcode(); \$unbbcode->bbcode_second_pass(\$msg, \$uid, \$bitfield); |