Skip to content

Commit 10cddfb

Browse files
committed
comment test to start asserting tagname starting with XML
1 parent fa7f8cd commit 10cddfb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spec/validator_spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ describe("XMLParser", function () {
171171
expect(result).toBe(true);
172172
});
173173

174-
it("should return false when tag starts with xml or XML etc", function () {
174+
/*it("should return false when tag starts with xml or XML etc", function () {
175175
var xmlData = "<xmlNode abc='123' bc='567'>val</xmlNode>";
176176
177177
result = validator.validate(xmlData);
@@ -186,7 +186,7 @@ describe("XMLParser", function () {
186186
187187
result = validator.validate(xmlData);
188188
expect(result).toBe(false);
189-
});
189+
});*/
190190

191191
it("should return true for valid tag", function () {
192192
var xmlData = "<ns:start_tag-2.0></ns:start_tag-2.0>";

0 commit comments

Comments
 (0)