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
fa6f6515a6
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

@@ -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));
         }