Procházet zdrojové kódy

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

ankenyr před 3 roky
rodič
revize
6ba7db3d55

+ 1 - 4
tests/Jellyfin.Server.Implementations.Tests/Sorting/AiredEpisodeOrderComparerTests.cs

@@ -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?[]>