Explorar el Código

Update unit test name

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
Ahmed Rafiq hace 3 años
padre
commit
cf75f99f0e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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));
         }