aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2021-05-07 18:50:38 +0100
committerGitHub <noreply@github.com>2021-05-07 18:50:38 +0100
commit5f70b4ead16965acf4dbaf7bb486ecf072fb2a1b (patch)
tree14da6ca740bdb8e022ba7aada786bd423b6efe92
parent043e69d252d5862ec5466ad037fea05f5aaef40f (diff)
Update tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
-rw-r--r--tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs b/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
index dd81ad134..80175039e 100644
--- a/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
+++ b/tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
@@ -20,15 +20,6 @@ namespace Jellyfin.Api.Tests.Controllers
_factory = factory;
}
- [Fact]
- public async Task Ensure_Ping_Working()
- {
- var client = _factory.CreateClient();
-
- var response = await client.GetAsync("system/ping").ConfigureAwait(false);
- Assert.Equal(HttpStatusCode.OK, response.StatusCode);
- }
-
[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