aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmed Rafiq <ahmedrafiq47@gmail.com>2021-12-04 21:14:52 +0600
committerGitHub <noreply@github.com>2021-12-04 21:14:52 +0600
commitcf75f99f0e4d765cc7dfa928b3a508121f538db4 (patch)
treee4ef30616922c45a067b1408c1ca1fa53661b053
parentfa6f6515a6874a5fca4267c50e6c597a2042ad96 (diff)
Update unit test name
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
-rw-r--r--tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs2
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));
}