diff options
author | Elliott Hughes <enh@google.com> | 2010-02-01 16:08:02 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-02-01 16:08:02 -0800 |
commit | a6dc264b8fc69427d54ba8da6bf8f36fd85ecf60 (patch) | |
tree | 3a77b1201c09749961faa74ca0e933435100db02 | |
parent | 3223532212816c08454d66cfcdaabdf20bf56fb6 (diff) | |
parent | c7f73a8023d1b3eab8b45df9edb24790b0b23046 (diff) | |
download | libcore-a6dc264b8fc69427d54ba8da6bf8f36fd85ecf60.zip libcore-a6dc264b8fc69427d54ba8da6bf8f36fd85ecf60.tar.gz libcore-a6dc264b8fc69427d54ba8da6bf8f36fd85ecf60.tar.bz2 |
Merge "Remove @KnownFailure from tests that now pass."
-rw-r--r-- | xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java b/xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java index 2b8bb5c..ca7cf71 100644 --- a/xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java +++ b/xml/src/test/java/tests/api/javax/xml/parsers/SAXParserTest.java @@ -347,8 +347,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {java.io.File.class, org.xml.sax.helpers.DefaultHandler.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLjava_io_FileLorg_xml_sax_helpers_DefaultHandler() throws Exception { @@ -456,8 +454,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {org.xml.sax.InputSource.class, org.xml.sax.helpers.DefaultHandler.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLorg_xml_sax_InputSourceLorg_xml_sax_helpers_DefaultHandler() throws Exception { @@ -623,8 +619,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {java.io.InputStream.class, org.xml.sax.helpers.DefaultHandler.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandler() throws Exception { @@ -675,8 +669,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {java.io.InputStream.class, org.xml.sax.helpers.DefaultHandler.class, java.lang.String.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandlerLjava_lang_String() { for(int i = 0; i < list_wf.length; i++) { try { @@ -952,8 +944,6 @@ public class SAXParserTest extends TestCase { method = "parse", args = {java.lang.String.class, org.xml.sax.helpers.DefaultHandler.class} ) - @KnownFailure("The default handler doesn't get the qName value supplied. " + - "We either need to change the test, or fix the parser.") public void test_parseLjava_lang_StringLorg_xml_sax_helpers_DefaultHandler() throws Exception { @@ -1174,4 +1164,3 @@ public class SAXParserTest extends TestCase { } } - |