mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 00:55:13 +01:00
Fix build errors from new warnings
This commit is contained in:
@@ -11,7 +11,7 @@ public class IndexNumberComparerTests
|
||||
{
|
||||
private readonly IBaseItemComparer _cmp = new IndexNumberComparer();
|
||||
|
||||
private static TheoryData<BaseItem?, BaseItem?> Compare_GivenNull_ThrowsArgumentNullException_TestData()
|
||||
public static TheoryData<BaseItem?, BaseItem?> Compare_GivenNull_ThrowsArgumentNullException_TestData()
|
||||
=> new()
|
||||
{
|
||||
{ null, new Audio() },
|
||||
|
||||
@@ -12,7 +12,7 @@ public class ParentIndexNumberComparerTests
|
||||
{
|
||||
private readonly IBaseItemComparer _cmp = new ParentIndexNumberComparer();
|
||||
|
||||
private static TheoryData<BaseItem?, BaseItem?> Compare_GivenNull_ThrowsArgumentNullException_TestData()
|
||||
public static TheoryData<BaseItem?, BaseItem?> Compare_GivenNull_ThrowsArgumentNullException_TestData()
|
||||
=> new()
|
||||
{
|
||||
{ null, new Audio() },
|
||||
|
||||
Reference in New Issue
Block a user