aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs')
-rw-r--r--tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs b/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
index ce5ac11ea..212fb118c 100644
--- a/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
+++ b/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
@@ -39,7 +39,7 @@ namespace Jellyfin.Api.Tests.Controllers
{
var client = _factory.CreateClient();
- var response = await client.GetAsync("system/ping?" + sourceUrl).ConfigureAwait(false);
+ var response = await client.GetAsync("Tests/Decoding?" + sourceUrl).ConfigureAwait(false);
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
Assert.Equal(unencodedUrl, response.Headers.GetValues("querystring").First());
}