Skip to content

Commit 8a06cc7

Browse files
committed
cleanup
1 parent 8b70a46 commit 8a06cc7

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ var result = await Verify(
805805
});
806806
Assert.Contains("Value To Check", result.Text);
807807
```
808-
<sup><a href='/src/Verify.Tests/Tests.cs#L429-L438' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyResult' title='Start of snippet'>anchor</a></sup>
808+
<sup><a href='/src/Verify.Tests/Tests.cs#L423-L432' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyResult' title='Start of snippet'>anchor</a></sup>
809809
<!-- endSnippet -->
810810

811811
If using `Verifier.Throws`, the resulting `Exception` will also be accessible

src/Verify.Tests/Serialization/SerializationTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3716,10 +3716,10 @@ public Task ScrubDictionaryKeyByName()
37163716
class IgnoreExplicitTarget
37173717
{
37183718
public string Include;
3719-
public string Property { get; set; }
3719+
public string Property { get; init; }
37203720

37213721
[JsonProperty(PropertyName = "_Custom")]
3722-
public string PropertyWithPropertyName { get; set; }
3722+
public string PropertyWithPropertyName { get; init; }
37233723

37243724
public string PropertyByName { get; set; }
37253725
public string GetOnlyProperty => "asd";

src/Verify.Tests/Tests.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -334,12 +334,6 @@ await Verify("value")
334334

335335
#endif
336336

337-
class Element
338-
{
339-
// ReSharper disable once UnusedMember.Local
340-
public string? Id { get; set; }
341-
}
342-
343337
#if NET6_0_OR_GREATER
344338
[Fact]
345339
public async Task StringWithUtf8Bom()

0 commit comments

Comments
 (0)