implement suggested changes

This commit is contained in:
Keridos 2020-09-09 02:33:59 +02:00
parent b9c7cce696
commit 8eb1eedc8d
No known key found for this signature in database
GPG key ID: EC64C45FFC952BFF
2 changed files with 5 additions and 6 deletions

View file

@ -31,13 +31,13 @@ namespace Jellyfin.Naming.Tests.AudioBook
{
IsDirectory = false,
FullName = i
}).ToList()).ToList();
})).ToList();
Assert.Equal(2, result[0].Files.ToList().Count);
Assert.Equal(2, result[0].Files.Count);
// Assert.Empty(result[0].Extras); FIXME: AudioBookListResolver should resolve extra files properly
Assert.Equal("Harry Potter and the Deathly Hallows", result[0].Name);
Assert.Equal(3, result[1].Files.ToList().Count);
Assert.Equal(3, result[1].Files.Count);
Assert.Empty(result[1].Extras);
Assert.Equal("Batman", result[1].Name);
}
@ -57,7 +57,7 @@ namespace Jellyfin.Naming.Tests.AudioBook
{
IsDirectory = false,
FullName = i
}).ToList()).ToList();
}));
Assert.Single(result);
}
@ -77,7 +77,7 @@ namespace Jellyfin.Naming.Tests.AudioBook
{
IsDirectory = false,
FullName = i
}).ToList()).ToList();
})).ToList();
Assert.Single(result);
}

View file

@ -1,7 +1,6 @@
using System.Collections.Generic;
using Emby.Naming.AudioBook;
using Emby.Naming.Common;
using MediaBrowser.Model.Entities;
using Xunit;
namespace Jellyfin.Naming.Tests.AudioBook