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 @@ -814,7 +814,6 @@ public async Task Public_Interop_ExactVersion_Success(string uri)
814814 } ;
815815 using HttpResponseMessage response = await client . SendAsync ( request ) . WaitAsync ( TimeSpan . FromSeconds ( 20 ) ) ;
816816
817- Assert . Equal ( HttpStatusCode . OK , response . StatusCode ) ;
818817 Assert . Equal ( 3 , response . Version . Major ) ;
819818 }
820819
@@ -833,7 +832,6 @@ public async Task Public_Interop_ExactVersion_BufferContent_Success(string uri)
833832 } ;
834833 using HttpResponseMessage response = await client . SendAsync ( request , HttpCompletionOption . ResponseContentRead ) . WaitAsync ( TimeSpan . FromSeconds ( 20 ) ) ;
835834
836- Assert . Equal ( HttpStatusCode . OK , response . StatusCode ) ;
837835 Assert . Equal ( 3 , response . Version . Major ) ;
838836
839837 var content = await response . Content . ReadAsStringAsync ( ) ;
You can’t perform that action at this time.
0 commit comments