We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38c1d7a commit 7d69b99Copy full SHA for 7d69b99
1 file changed
src/Stryker.Core/Stryker.Core.UnitTest/ExcludableStringTests.cs
@@ -15,8 +15,8 @@ public void ExcludableString_Null()
15
[Fact]
16
public void ExcludableString_Globs()
17
{
18
- var s1 = new ExcludableString(@"src/Person.cs");
19
- var s2 = new ExcludableString(@"!src\Person.cs");
+ var s1 = new ExcludableString(@"Person.cs");
+ var s2 = new ExcludableString(@"!Person.cs");
20
21
s1.IsExcluded.ShouldBeFalse();
22
s2.IsExcluded.ShouldBeTrue();
0 commit comments