Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp.Tests/TupleFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/TupleFixture.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp.Tests/TupleFixture.cs b/LibGit2Sharp.Tests/TupleFixture.cs
index 8eae182f..dadf51aa 100644
--- a/LibGit2Sharp.Tests/TupleFixture.cs
+++ b/LibGit2Sharp.Tests/TupleFixture.cs
@@ -39,8 +39,8 @@ namespace LibGit2Sharp.Tests
{
var sut2 = new Tuple<int, string>(integer, stringy);
- sut.Equals(sut2).ShouldBeTrue();
- Equals(sut, sut2).ShouldBeTrue();
+ Assert.True(sut.Equals(sut2));
+ Assert.True(Equals(sut, sut2));
}
[Fact]