Update tests/Jellyfin.Server.Implementations.Tests/Sorting/AiredEpisodeOrderComparerTests.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
pull/6403/head
Rob 3 years ago committed by GitHub
parent 5eac267569
commit 579ed5c1fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,7 +25,7 @@ namespace Jellyfin.Server.Implementations.Tests.Sorting
Assert.Equal(expected, cmp.Compare(x, y));
if (expected == 1)
{
Assert.Equal(expected * -1, cmp.Compare(y, x));
Assert.Equal(-expected, cmp.Compare(y, x));
}
}
}

Loading…
Cancel
Save