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

This commit is contained in:
ankenyr 2021-08-15 15:48:01 -07:00
parent 0f9e95b4c5
commit 6ba7db3d55
1 changed files with 1 additions and 4 deletions

View File

@ -26,10 +26,7 @@ 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));
}
Assert.Equal(-expected, cmp.Compare(y, x));
}
private class EpisodeBadData : IEnumerable<object?[]>