Skip to content

Commit 7d69b99

Browse files
committed
up
1 parent 38c1d7a commit 7d69b99

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Stryker.Core/Stryker.Core.UnitTest/ExcludableStringTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ public void ExcludableString_Null()
1515
[Fact]
1616
public void ExcludableString_Globs()
1717
{
18-
var s1 = new ExcludableString(@"src/Person.cs");
19-
var s2 = new ExcludableString(@"!src\Person.cs");
18+
var s1 = new ExcludableString(@"Person.cs");
19+
var s2 = new ExcludableString(@"!Person.cs");
2020

2121
s1.IsExcluded.ShouldBeFalse();
2222
s2.IsExcluded.ShouldBeTrue();

0 commit comments

Comments
 (0)