Skip to content

Commit 55d2413

Browse files
committed
cleanup
1 parent b46e192 commit 55d2413

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

src/DiffEngine.Tests/DiffRunnerTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if NET9_0
1+
#if NET10_0
22
public class DiffRunnerTests :
33
XunitContextBase
44
{
@@ -195,4 +195,4 @@ static DiffRunnerTests() =>
195195
exePath: FakeDiffTool.Exe,
196196
binaryExtensions: [".knownBin"])!;
197197
}
198-
#endif
198+
#endif

src/DiffEngine.Tests/WindowsProcessTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if NET5_0_OR_GREATER
1+
#if NET10_0
22
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
33
#endif
44
public class WindowsProcessTests(ITestOutputHelper output) :
@@ -22,7 +22,7 @@ public void MatchesPattern_WithTwoFilePaths_ReturnsTrue(string commandLine, bool
2222

2323
[Theory]
2424
[InlineData("notepad.exe")]
25-
[InlineData("notepad.exe C:\\temp\\file.txt")]
25+
[InlineData(@"notepad.exe C:\temp\file.txt")]
2626
[InlineData("cmd.exe /c dir")]
2727
[InlineData("explorer.exe")]
2828
[InlineData("")]

src/DiffEngineTray.Tests/PiperTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
#if NET7_0
2-
public class PiperTest(ITestOutputHelper output) :
1+
public class PiperTest(ITestOutputHelper output) :
32
XunitContextBase(output)
43
{
54
[Fact]
@@ -71,4 +70,3 @@ await Verify(Logs)
7170
.ScrubLinesContaining("PiperClient");
7271
}
7372
}
74-
#endif

0 commit comments

Comments
 (0)