We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b18f61 commit 37d657aCopy full SHA for 37d657a
src/AngleSharp.Xml.Tests/Parser/XmlParsing.cs
@@ -1,8 +1,9 @@
1
namespace AngleSharp.Xml.Tests.Parser
2
{
3
+ using AngleSharp.Dom;
4
using AngleSharp.Xml.Parser;
5
using NUnit.Framework;
- using System;
6
+ using System.Linq;
7
8
[TestFixture]
9
public class XmlParsing
@@ -148,7 +149,7 @@ public void ParseInvalidXmlShouldNotThrowWhenSuppressingErrors_Issue14()
148
149
}
150
151
[Test]
- public async Task XmlPrefixedAttributesShouldLocateXmlNamespaceWithoutDeclaration()
152
+ public void XmlPrefixedAttributesShouldLocateXmlNamespaceWithoutDeclaration()
153
154
var document = @"<xml xml:lang=""en""></xml>".ToXmlDocument();
155
var root = document.DocumentElement;
0 commit comments