Skip to content

Commit

Permalink
Build fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Feb 25, 2020
1 parent bdb33f3 commit e3ad0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csharp/Platform.Comparers.Tests/ComparerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class ComparerTests
[Fact]
public void FunctionConversionTest()
{
Func<object, object, int> function = (object x, object y) => x.GetHashCode().CompareTo(y.GetHashCode();
Func<object, object, int> function = (object x, object y) => x.GetHashCode().CompareTo(y.GetHashCode());
Comparer comparer = function;
var x = new object();
var y = new object();
Expand Down

0 comments on commit e3ad0c4

Please sign in to comment.