diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-12-12 02:07:35 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-12-12 02:07:35 +0100 |
| commit | 7ee96a59d3b69e15aec1df33ad46f47021f8a20b (patch) | |
| tree | b1ad13f814ed6883d28d24f666c37316c76081af /tests | |
| parent | a90614d194314f8a4d6f097637836610ce8b6bbe (diff) | |
Use correct jpeg MIME type
image/jpg isn't a valid MIME type
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs b/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs index 55050cc95..cbab455f0 100644 --- a/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs +++ b/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs @@ -1,8 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using MediaBrowser.Model.Net; using Xunit; @@ -129,7 +124,7 @@ namespace Jellyfin.Model.Tests.Net [InlineData("font/woff2", ".woff2")] [InlineData("image/bmp", ".bmp")] [InlineData("image/gif", ".gif")] - [InlineData("image/jpg", ".jpg")] + [InlineData("image/jpeg", ".jpg")] [InlineData("image/png", ".png")] [InlineData("image/svg+xml", ".svg")] [InlineData("image/tiff", ".tif")] |
