Browse Source

Update unit test name

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
Ahmed Rafiq 3 years ago
parent
commit
cf75f99f0e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/Jellyfin.Model.Tests/Net/MimeTypesTests.cs

+ 1 - 1
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));
         }