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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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();