Update tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
BaronGreenback 2021-05-07 18:49:57 +01:00 committed by GitHub
parent af1fe1af6f
commit 043e69d252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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