Skip to content

Commit

Permalink
fix file naming
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Jun 3, 2021
1 parent a70943b commit 7a062b1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
15 changes: 8 additions & 7 deletions src/DiffEngine.Tests/DiffToolsTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Linq;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using DiffEngine;
using Xunit;
Expand Down Expand Up @@ -85,13 +86,13 @@ async Task AddToolAndLaunch()
}

//[Fact]
//public Task LaunchImageDiff()
//public async Task LaunchImageDiff()
//{
// foreach (var tool in DiffTools.Resolved)
// {
// await DiffRunner.Launch(tool,
// Path.Combine(SourceDirectory, "input.file1.png"),
// Path.Combine(SourceDirectory, "input.file2.png"));
// await DiffRunner.LaunchAsync(tool,
// Path.Combine(SourceDirectory, "input.temp.png"),
// Path.Combine(SourceDirectory, "input.target.png"));
// }
//}

Expand All @@ -101,8 +102,8 @@ async Task AddToolAndLaunch()
// foreach (var tool in DiffTools.Resolved)
// {
// await DiffRunner.LaunchAsync(tool,
// Path.Combine(SourceDirectory, "input.file1.txt"),
// Path.Combine(SourceDirectory, "input.file2.txt"));
// Path.Combine(SourceDirectory, "input.temp.txt"),
// Path.Combine(SourceDirectory, "input.target.txt"));
// }
//}

Expand Down
1 change: 0 additions & 1 deletion src/DiffEngine.Tests/input.file1.txt

This file was deleted.

1 change: 0 additions & 1 deletion src/DiffEngine.Tests/input.file2.txt

This file was deleted.

File renamed without changes
1 change: 1 addition & 0 deletions src/DiffEngine.Tests/input.target.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
File renamed without changes
1 change: 1 addition & 0 deletions src/DiffEngine.Tests/input.temp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
temp

0 comments on commit 7a062b1

Please sign in to comment.