diff options
| author | Ahmed Rafiq <ahmedrafiq47@gmail.com> | 2021-12-04 21:14:52 +0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-04 21:14:52 +0600 |
| commit | cf75f99f0e4d765cc7dfa928b3a508121f538db4 (patch) | |
| tree | e4ef30616922c45a067b1408c1ca1fa53661b053 /tests | |
| parent | fa6f6515a6874a5fca4267c50e6c597a2042ad96 (diff) | |
Update unit test name
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
Diffstat (limited to 'tests')
| -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 637424e27..55050cc95 100644 --- a/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs +++ b/tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs @@ -156,7 +156,7 @@ namespace Jellyfin.Model.Tests.Net [InlineData("video/x-ms-asf", ".asf")] [InlineData("video/x-ms-wmv", ".wmv")] [InlineData("video/x-msvideo", ".avi")] - public void ToExtension(string input, string expectedResult) + public void ToExtension_Valid_ReturnsCorrectResult(string input, string expectedResult) { Assert.Equal(expectedResult, MimeTypes.ToExtension(input)); } |
