Skip to content

Commit 7a062b1

Browse files
committed
fix file naming
1 parent a70943b commit 7a062b1

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

src/DiffEngine.Tests/DiffToolsTest.cs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System.Linq;
1+
using System.IO;
2+
using System.Linq;
23
using System.Threading.Tasks;
34
using DiffEngine;
45
using Xunit;
@@ -85,13 +86,13 @@ async Task AddToolAndLaunch()
8586
}
8687

8788
//[Fact]
88-
//public Task LaunchImageDiff()
89+
//public async Task LaunchImageDiff()
8990
//{
9091
// foreach (var tool in DiffTools.Resolved)
9192
// {
92-
// await DiffRunner.Launch(tool,
93-
// Path.Combine(SourceDirectory, "input.file1.png"),
94-
// Path.Combine(SourceDirectory, "input.file2.png"));
93+
// await DiffRunner.LaunchAsync(tool,
94+
// Path.Combine(SourceDirectory, "input.temp.png"),
95+
// Path.Combine(SourceDirectory, "input.target.png"));
9596
// }
9697
//}
9798

@@ -101,8 +102,8 @@ async Task AddToolAndLaunch()
101102
// foreach (var tool in DiffTools.Resolved)
102103
// {
103104
// await DiffRunner.LaunchAsync(tool,
104-
// Path.Combine(SourceDirectory, "input.file1.txt"),
105-
// Path.Combine(SourceDirectory, "input.file2.txt"));
105+
// Path.Combine(SourceDirectory, "input.temp.txt"),
106+
// Path.Combine(SourceDirectory, "input.target.txt"));
106107
// }
107108
//}
108109

src/DiffEngine.Tests/input.file1.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/DiffEngine.Tests/input.file2.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/DiffEngine.Tests/input.target.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target

src/DiffEngine.Tests/input.temp.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
temp

0 commit comments

Comments
 (0)