mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 05:48:47 +01:00
Fixed missing sort argument (#15413)
This commit is contained in:
@@ -12,7 +12,7 @@ public class OrderMapperTests
|
||||
[Fact]
|
||||
public void ShouldReturnMappedOrderForSortingByPremierDate()
|
||||
{
|
||||
var orderFunc = OrderMapper.MapOrderByField(ItemSortBy.PremiereDate, new InternalItemsQuery()).Compile();
|
||||
var orderFunc = OrderMapper.MapOrderByField(ItemSortBy.PremiereDate, new InternalItemsQuery(), null!).Compile();
|
||||
|
||||
var expectedDate = new DateTime(1, 2, 3);
|
||||
var expectedProductionYearDate = new DateTime(4, 1, 1);
|
||||
|
||||
Reference in New Issue
Block a user