Removing if statement and always testing reverse of x and y.

pull/6403/head
ankenyr 3 years ago
parent 0f9e95b4c5
commit 6ba7db3d55

@ -26,11 +26,8 @@ namespace Jellyfin.Server.Implementations.Tests.Sorting
var cmp = new AiredEpisodeOrderComparer();
Assert.Equal(expected, cmp.Compare(x, y));
if (expected == 1)
{
Assert.Equal(-expected, cmp.Compare(y, x));
}
}
private class EpisodeBadData : IEnumerable<object?[]>
{

Loading…
Cancel
Save