diff options
| author | Ahmed Rafiq <ahmedrafiq47@gmail.com> | 2021-12-04 21:14:16 +0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-04 21:14:16 +0600 |
| commit | fa6f6515a6874a5fca4267c50e6c597a2042ad96 (patch) | |
| tree | 1aaa4b00b189391d16b45d67ba480c0c13078a3b | |
| parent | 0e491025aec8ef11acf86b189b5e16692fb8d4a6 (diff) | |
Update unit test name
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
| -rw-r--r-- | tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs b/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs index b82607bf0..637424e27 100644 --- a/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs +++ b/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs @@ -87,7 +87,7 @@ namespace Jellyfin.Model.Tests.Net [InlineData(".wma", "audio/x-ms-wma")] [InlineData(".wv", "audio/x-wavpack")] [InlineData(".xsp", "audio/xsp")] - public void GetMimeType(string input, string expectedResult) + public void GetMimeType_Valid_ReturnsCorrectResult(string input, string expectedResult) { Assert.Equal(expectedResult, MimeTypes.GetMimeType(input, null)); } |
