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

Co-authored-by: Bond-009 <bond.009@outlook.com>
This commit is contained in:
Rob
2021-08-15 15:26:00 -07:00
committed by GitHub
parent 10fbb4d48d
commit 9220682fd1

View File

@@ -37,7 +37,7 @@ namespace Jellyfin.Server.Implementations.Tests.Sorting
public IEnumerator<object?[]> GetEnumerator()
{
yield return new object?[] { null, new Episode() };
yield return new object?[] { new Episode() };
yield return new object?[] { new Episode(), null };
}
IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();