Skip to content

Commit e95fe5d

Browse files
committed
.
1 parent 58ba7a0 commit e95fe5d

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

docs/verify-xml.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This code:
3838
public Task Xml() =>
3939
VerifyXml(xml);
4040
```
41-
<sup><a href='/src/Verify.Tests/XmlTests.cs#L13-L19' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyXml' title='Start of snippet'>anchor</a></sup>
41+
<sup><a href='/src/Verify.Tests/XmlTests.cs#L10-L16' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyXml' title='Start of snippet'>anchor</a></sup>
4242
<!-- endSnippet -->
4343

4444
Will produce
@@ -66,7 +66,7 @@ public Task XmlIgnoreMember() =>
6666
VerifyXml(xml)
6767
.IgnoreMember("node");
6868
```
69-
<sup><a href='/src/Verify.Tests/XmlTests.cs#L95-L102' title='Snippet source file'>snippet source</a> | <a href='#snippet-XmlIgnoreMember' title='Start of snippet'>anchor</a></sup>
69+
<sup><a href='/src/Verify.Tests/XmlTests.cs#L92-L99' title='Snippet source file'>snippet source</a> | <a href='#snippet-XmlIgnoreMember' title='Start of snippet'>anchor</a></sup>
7070
<!-- endSnippet -->
7171

7272
Will produce
@@ -92,7 +92,7 @@ public Task XmlScrubMember() =>
9292
VerifyXml(xml)
9393
.ScrubMember("node");
9494
```
95-
<sup><a href='/src/Verify.Tests/XmlTests.cs#L104-L111' title='Snippet source file'>snippet source</a> | <a href='#snippet-XmlScrubMember' title='Start of snippet'>anchor</a></sup>
95+
<sup><a href='/src/Verify.Tests/XmlTests.cs#L101-L108' title='Snippet source file'>snippet source</a> | <a href='#snippet-XmlScrubMember' title='Start of snippet'>anchor</a></sup>
9696
<!-- endSnippet -->
9797

9898
Will produce

src/Verify.Tests/GlobalUsings.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
global using EmptyFiles;
99
global using Polyfills;
1010
global using System.Collections.ObjectModel;
11-
global using System.Security.Claims;
11+
global using System.Security.Claims;
12+
global using System.Xml;

src/Verify.Tests/XmlTests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System.Xml;
2-
using System.Xml.Linq;
3-
4-
public class XmlTests
1+
public class XmlTests
52
{
63
string xml = """
74
<?xml version="1.0" encoding="UTF-8"?>

0 commit comments

Comments
 (0)