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:
authoryorah <yoram.harmelin@gmail.com>2012-05-25 17:34:02 +0400
committernulltoken <emeric.fermas@gmail.com>2012-05-25 19:24:52 +0400
commite02f76b37cbe68570bc58c21516550ee94d119f6 (patch)
treec5d71cfeff41baf50a31228bad30cab0bdcc8350 /LibGit2Sharp.Tests/TupleFixture.cs
parent0072b7e52c9ed23e7b7a02cdb17e0b96a9d5835a (diff)
Replace AssertExtensions.ShouldBeTrue method by Assert.True
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]