Merge pull request #7802 from jellyfin/external

(cherry picked from commit 9954cbd550)
Signed-off-by: crobibero <cody@robibe.ro>
This commit is contained in:
Cody Robibero
2022-05-29 08:49:36 -06:00
committed by crobibero
parent b8722d02a3
commit 3a95d4b04e
4 changed files with 25 additions and 14 deletions

View File

@@ -43,6 +43,9 @@ public class AudioResolverTests
MediaStreams = new List<MediaStream>
{
new()
{
Type = MediaStreamType.Audio
}
}
}));

View File

@@ -359,7 +359,10 @@ public class MediaInfoResolverTests
var mediaStreams = new List<MediaStream>();
for (int i = 0; i < streamCount; i++)
{
mediaStreams.Add(new());
mediaStreams.Add(new()
{
Type = MediaStreamType.Subtitle
});
}
return mediaStreams;

View File

@@ -43,6 +43,9 @@ public class SubtitleResolverTests
MediaStreams = new List<MediaStream>
{
new()
{
Type = MediaStreamType.Subtitle
}
}
}));