Skip to content

Commit

Permalink
Update DiffToolsTest.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Jan 12, 2025
1 parent afeb4cf commit 38e37c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DiffEngine.Tests/DiffToolsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public void AddTool()

#endregion

Assert.Equal(resolvedTool.Name, DiffTools.Resolved.First()
.Name);
var resolved = DiffTools.Resolved.Select(_ => _.Name).First();
Assert.Equal(resolvedTool.Name, resolved);
Assert.True(DiffTools.TryFindByExtension(".jpg", out var forExtension));
Assert.Equal(resolvedTool.Name, forExtension.Name);
}
Expand Down

0 comments on commit 38e37c1

Please sign in to comment.