aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-04-21 10:18:26 +0200
committerBond_009 <bond.009@outlook.com>2020-04-21 10:18:26 +0200
commitc430a7ed8faa40788c32b89852310981b7c1cf83 (patch)
tree4622517191f8e074cd61c6d0a2810dbbdd89007f /tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs
parent958681cdffddc7ea24d92d126badb3372cfa5d41 (diff)
Address comments
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs')
-rw-r--r--tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs
index d2ed0d925..c771f5f4a 100644
--- a/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs
+++ b/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs
@@ -10,9 +10,9 @@ namespace Jellyfin.Server.Implementations.Tests.Library
[InlineData("Superman: Red Son [imdbid=tt10985510]", "imdbid", "tt10985510")]
[InlineData("Superman: Red Son - tt10985510", "imdbid", "tt10985510")]
[InlineData("Superman: Red Son", "imdbid", null)]
- public void GetAttributeValue_ValidArgs_Correct(string input, string attribute, string? result)
+ public void GetAttributeValue_ValidArgs_Correct(string input, string attribute, string? expectedResult)
{
- Assert.Equal(result, PathExtensions.GetAttributeValue(input, attribute));
+ Assert.Equal(expectedResult, PathExtensions.GetAttributeValue(input, attribute));
}
[Theory]