From 73661a84966fc95849f7a99f3f69681d32258c70 Mon Sep 17 00:00:00 2001 From: Timothy Makkison Date: Mon, 4 Nov 2024 23:25:30 +0000 Subject: [PATCH] chore: delete broken test --- Refit.Tests/RestService.cs | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/Refit.Tests/RestService.cs b/Refit.Tests/RestService.cs index 984a8be35..9f0553070 100644 --- a/Refit.Tests/RestService.cs +++ b/Refit.Tests/RestService.cs @@ -290,9 +290,6 @@ public interface IQueryApi [Get("/foo?=")] Task EmptyQueryKeyAndValue(); - [Get("/foo?&&&")] - Task QueryManyAndSymbol(); - [Get("/foo?key,=value,&key1(=value1(")] Task UnescapedQuery(); @@ -2375,24 +2372,6 @@ public async Task EmptyQueryKeyAndValueShouldBeEmpty() mockHttp.VerifyNoOutstandingExpectation(); } - [Fact] - public async Task QueryAndSymbolShouldBeEmpty() - { - var mockHttp = new MockHttpMessageHandler(); - var settings = new RefitSettings { HttpMessageHandlerFactory = () => mockHttp, }; - - mockHttp - .Expect(HttpMethod.Get, "https://github.com/foo?&&&") - .WithExactQueryString("&&&") - .Respond(HttpStatusCode.OK); - - var fixture = RestService.For("https://github.com", settings); - - await fixture.QueryManyAndSymbol(); - - mockHttp.VerifyNoOutstandingExpectation(); - } - [Fact] public async Task UnescapedQueryShouldBeEscaped() {