From e02f76b37cbe68570bc58c21516550ee94d119f6 Mon Sep 17 00:00:00 2001 From: yorah Date: Fri, 25 May 2012 15:34:02 +0200 Subject: Replace AssertExtensions.ShouldBeTrue method by Assert.True --- LibGit2Sharp.Tests/TupleFixture.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'LibGit2Sharp.Tests/TupleFixture.cs') 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(integer, stringy); - sut.Equals(sut2).ShouldBeTrue(); - Equals(sut, sut2).ShouldBeTrue(); + Assert.True(sut.Equals(sut2)); + Assert.True(Equals(sut, sut2)); } [Fact] -- cgit v1.2.3