diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2021-05-07 14:37:26 +0100 |
|---|---|---|
| committer | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2021-05-07 14:37:26 +0100 |
| commit | af1fe1af6fee7f4e5cf73d92266df21b291169d9 (patch) | |
| tree | 9c14b889e6c83648b530c4b2b2d24317b08bb9bb /tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs | |
| parent | 4f5c9e95041a39ae549bfa3f36bbeda054bce3ca (diff) | |
Moved into test controller.
Diffstat (limited to 'tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs')
| -rw-r--r-- | tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs | 2 |
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()); } |
