We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8adbf53 commit 43d0502Copy full SHA for 43d0502
test/RestSharp.IntegrationTests/StatusCodeTests.cs
@@ -97,18 +97,6 @@ public void Handles_GET_Request_404_Error()
97
Assert.AreEqual(HttpStatusCode.NotFound, response.StatusCode);
98
}
99
100
- [Test]
101
- public void Handles_GET_Request_404_Error_With_Body()
102
- {
103
- var request = new RestRequest("404");
104
-
105
- request.AddBody("This is the body");
106
107
- var response = _client.Execute(request);
108
109
- Assert.AreEqual(HttpStatusCode.NotFound, response.StatusCode);
110
- }
111
112
[Test, Ignore("Not sure why this hangs")]
113
public void Reports_1xx_Status_Code_Success_Accurately()
114
{
0 commit comments