aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Integration.Tests/EncodedQueryStringTest.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2021-05-11 21:45:15 +0100
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2021-05-11 21:45:15 +0100
commit85ecea77221ff6dfda73a7b75efb5d29f2e3cc96 (patch)
tree6310126d5c128873ab8957878c51a56ef319a29d /tests/Jellyfin.Server.Integration.Tests/EncodedQueryStringTest.cs
parent903bf2a086c49266c010f947180bd660b2c58931 (diff)
corrected tests
Diffstat (limited to 'tests/Jellyfin.Server.Integration.Tests/EncodedQueryStringTest.cs')
-rw-r--r--tests/Jellyfin.Server.Integration.Tests/EncodedQueryStringTest.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Integration.Tests/EncodedQueryStringTest.cs b/tests/Jellyfin.Server.Integration.Tests/EncodedQueryStringTest.cs
index a89d6e86f..0d1e408c8 100644
--- a/tests/Jellyfin.Server.Integration.Tests/EncodedQueryStringTest.cs
+++ b/tests/Jellyfin.Server.Integration.Tests/EncodedQueryStringTest.cs
@@ -19,7 +19,6 @@ namespace Jellyfin.Server.Integration.Tests
[Theory]
[InlineData("a=1&b=2&c=3", "a=1&b=2&c=3")] // won't be processed as there is more than 1.
[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)
{