mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 10:04:44 +01:00
Merge pull request #7802 from jellyfin/external
(cherry picked from commit 9954cbd550)
Signed-off-by: crobibero <cody@robibe.ro>
This commit is contained in:
@@ -43,6 +43,9 @@ public class AudioResolverTests
|
||||
MediaStreams = new List<MediaStream>
|
||||
{
|
||||
new()
|
||||
{
|
||||
Type = MediaStreamType.Audio
|
||||
}
|
||||
}
|
||||
}));
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -43,6 +43,9 @@ public class SubtitleResolverTests
|
||||
MediaStreams = new List<MediaStream>
|
||||
{
|
||||
new()
|
||||
{
|
||||
Type = MediaStreamType.Subtitle
|
||||
}
|
||||
}
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user