You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/SQLite/Top2000.Features.SQLite.Unittests/TrackInformation/ListingInformationDescendingComparerTests.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ public void Listings_with_same_edition_compare_as_zero()
14
14
15
15
varsut=newListingInformationDescendingComparer();
16
16
17
-
sut.Compare(listing1,listing2).Should().Be(0);
17
+
sut.Compare(listing1,listing2).ShouldBe(0);
18
18
}
19
19
20
20
[TestMethod]
@@ -25,7 +25,7 @@ public void Listings_with_higher_edition_compare_as_minus_zero()
25
25
26
26
varsut=newListingInformationDescendingComparer();
27
27
28
-
sut.Compare(listing1,listing2).Should().Be(1);
28
+
sut.Compare(listing1,listing2).ShouldBe(1);
29
29
}
30
30
31
31
[TestMethod]
@@ -36,6 +36,6 @@ public void Edition_with_lower_year_compare_as_plus_zero()
0 commit comments