diff options
-rw-r--r-- | dom/src/test/java/org/w3c/domts/level2/core/getElementsByTagNameNS08.java | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/dom/src/test/java/org/w3c/domts/level2/core/getElementsByTagNameNS08.java b/dom/src/test/java/org/w3c/domts/level2/core/getElementsByTagNameNS08.java index 4afe927..da356ab 100644 --- a/dom/src/test/java/org/w3c/domts/level2/core/getElementsByTagNameNS08.java +++ b/dom/src/test/java/org/w3c/domts/level2/core/getElementsByTagNameNS08.java @@ -6,14 +6,14 @@ The source document contained the following notice: -Copyright (c) 2001 World Wide Web Consortium, +Copyright (c) 2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de -Recherche en Informatique et en Automatique, Keio University). All +Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. This program is distributed under the W3C's Software -Intellectual Property License. This program is distributed in the +Intellectual Property License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. +the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more details. @@ -68,7 +68,7 @@ public final class getElementsByTagNameNS08 extends DOMTestCase { doc = (Document) load("staffNS", false); docElem = doc.getDocumentElement(); newList = docElem.getElementsByTagNameNS("*", "*"); - assertSize("listSize", 36, newList); + assertSize("listSize", 35, newList); // 36 on the RI, which supports entity references } /** * Gets URI that identifies the test. @@ -85,4 +85,3 @@ public final class getElementsByTagNameNS08 extends DOMTestCase { DOMTestCase.doMain(getElementsByTagNameNS08.class, args); } } - |