Skip to content

Commit

Permalink
Docs changes
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jul 28, 2024
1 parent b912cde commit 37048c9
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,15 +236,13 @@ public Task IgnoreFile()

return Verify(driver)
.IgnoreGeneratedResultInstance(
_ => _.HintName.Contains("helper"))
.IgnoreGeneratedResultInstance(
_ => _
.SourceText
.ToString()
.Contains("static void SayHello()"));
_ => _.HintName.Contains("helper") ||
_.SourceText
.ToString()
.Contains("static void SayHello()"));
}
```
<sup><a href='/src/Tests/IgnoreTest.cs#L3-L20' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreFile' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Tests/IgnoreTest.cs#L3-L18' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreFile' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->


Expand Down

0 comments on commit 37048c9

Please sign in to comment.