diff options
author | uckelman <uckelman@nomic.net> | 2010-11-25 11:38:35 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-11-25 11:38:35 +0000 |
commit | f59ebe2718fa832f70f2ed1b146d2393a3749e75 (patch) | |
tree | b78526aa755fd764bfb0f76da39e96a0c0ca3cd9 | |
parent | 4afe431ad4cfa9a0c61fa1246f476b658c85b11d (diff) |
Make sure quoting is correct.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@7497 67b53d14-2c14-4ace-a08f-0dab2b34000c
-rw-r--r-- | test/UtilTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/UtilTest.php b/test/UtilTest.php index 6e4541f..769e065 100644 --- a/test/UtilTest.php +++ b/test/UtilTest.php @@ -23,7 +23,7 @@ class UtilTest extends PHPUnit_Framework_TestCase { return array( array('Joel Uckelman', '"Joel Uckelman"'), array('L.Tankersley', '"L.Tankersley"'), - array('"\foo\"', '"\"\\\\foo\\\\\""') + array('"\foo\"', "\"\\\"\\\\foo\\\"\"") ); } |