Remove duplicate test.

This commit is contained in:
Joel Leitch 2010-11-16 22:18:28 +00:00
parent 0a3f5fa801
commit 56344cf067

View File

@ -39,13 +39,6 @@ public class JsonParserTest extends TestCase {
parser = new JsonParser();
}
public void testParseSingleWordFails() {
try {
parser.parse("Word");
fail();
} catch (JsonSyntaxException expected) {}
}
public void testParseUnquotedStringArrayFails() {
try {
parser.parse("[a,b,c]");