File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
test/RestSharp.IntegrationTests Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,6 @@ namespace RestSharp.IntegrationTests
88 [ TestFixture ]
99 public class ProxyTests
1010 {
11- class RequestBodyCapturer
12- {
13- public const string RESOURCE = "Capture" ;
14- }
15-
1611 [ Test ]
1712 public void Set_Invalid_Proxy_Fails ( )
1813 {
@@ -21,10 +16,6 @@ public void Set_Invalid_Proxy_Fails()
2116 var client = new RestClient ( server . Url ) { Proxy = new WebProxy ( "non_existent_proxy" , false ) } ;
2217 var request = new RestRequest ( ) ;
2318
24- const string contentType = "text/plain" ;
25- const string bodyData = "abc123 foo bar baz BING!" ;
26-
27- request . AddParameter ( contentType , bodyData , ParameterType . RequestBody ) ;
2819 var response = client . Get ( request ) ;
2920
3021 Assert . False ( response . IsSuccessful ) ;
You can’t perform that action at this time.
0 commit comments