aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2021-05-07 18:49:57 +0100
committerGitHub <noreply@github.com>2021-05-07 18:49:57 +0100
commit043e69d252d5862ec5466ad037fea05f5aaef40f (patch)
tree42c9e92ce12ef8a68d6ca15262eae632c930b7f4
parentaf1fe1af6fee7f4e5cf73d92266df21b291169d9 (diff)
Update tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
-rw-r--r--tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs b/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
index 212fb118c..dd81ad134 100644
--- a/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
+++ b/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
@@ -34,7 +34,6 @@ namespace Jellyfin.Api.Tests.Controllers
[InlineData("a=1", "a=1")] // won't be processed as it has a value
[InlineData("%3D", "==")] // will decode with an empty string value '=' = ''.
[InlineData("a%3D1%26b%3D2%26c%3D3", "a=1&b=2&c=3")] // will be processed.
-
public async Task Ensure_Decoding_Of_Urls_Is_Working(string sourceUrl, string unencodedUrl)
{
var client = _factory.CreateClient();