diff options
-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); |