File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/MyTested.WebApi.Tests/BuildersTests/ServersTests Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -267,14 +267,13 @@ public void RemoteServerShouldWorkCorrectlyWithSpecificBaseAddress()
267267
268268 MyWebApi
269269 . Server ( )
270- . WorkingRemotely ( "https ://api.github.com " )
270+ . WorkingRemotely ( "http ://mytestedasp.net " )
271271 . WithHttpRequestMessage ( req => req
272- . WithRequestUri ( "/users/ivaylokenov/repos" )
273272 . WithHeader ( HttpHeader . UserAgent , "MyTested.WebApi" ) )
274273 . ShouldReturnHttpResponseMessage ( )
275274 . WithResponseTime ( time => time . TotalMilliseconds > 0 )
276275 . WithStatusCode ( HttpStatusCode . OK )
277- . ContainingContentHeader ( HttpContentHeader . ContentType , "application/json ; charset=utf-8" ) ;
276+ . ContainingContentHeader ( HttpContentHeader . ContentType , "text/html ; charset=utf-8" ) ;
278277
279278 Assert . IsFalse ( RemoteServer . GlobalIsConfigured ) ;
280279 }
You can’t perform that action at this time.
0 commit comments