File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
src/libraries/System.Net.Http/tests/FunctionalTests Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -730,7 +730,6 @@ public async Task Public_Interop_ExactVersion_Success(string uri)
730730 } ;
731731 using HttpResponseMessage response = await client . SendAsync ( request ) . WaitAsync ( TimeSpan . FromSeconds ( 20 ) ) ;
732732
733- Assert . Equal ( HttpStatusCode . OK , response . StatusCode ) ;
734733 Assert . Equal ( 3 , response . Version . Major ) ;
735734 }
736735
@@ -749,7 +748,6 @@ public async Task Public_Interop_ExactVersion_BufferContent_Success(string uri)
749748 } ;
750749 using HttpResponseMessage response = await client . SendAsync ( request , HttpCompletionOption . ResponseContentRead ) . WaitAsync ( TimeSpan . FromSeconds ( 20 ) ) ;
751750
752- Assert . Equal ( HttpStatusCode . OK , response . StatusCode ) ;
753751 Assert . Equal ( 3 , response . Version . Major ) ;
754752
755753 var content = await response . Content . ReadAsStringAsync ( ) ;
You can’t perform that action at this time.
0 commit comments