Changes as requested

This commit is contained in:
BaronGreenback
2021-05-15 20:24:41 +01:00
parent d0bfb56d2e
commit 53bfe0e77d
3 changed files with 5 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ namespace Jellyfin.Server.Integration.Tests
{
var client = _factory.CreateClient();
var response = await client.GetAsync("Tests/UrlDecode?" + sourceUrl).ConfigureAwait(false);
var response = await client.GetAsync("Encoder/UrlDecode?" + sourceUrl).ConfigureAwait(false);
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
string reply = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Assert.Equal(unencodedUrl, reply);