@@ -65,7 +65,7 @@ class HttpRequestResponseTest : HttpClientTest() {
6565 }
6666 }
6767
68- @Ignore // FIXME This test is broken since switching runSuspendingTest to runTest
68+ @IgnoreNative // FIXME This test is broken since switching runSuspendingTest to runTest
6969 @Test
7070 fun testHttpGet () = runTest {
7171 testSimpleRequest(" GET" , " /get" , 200 )
@@ -74,7 +74,7 @@ class HttpRequestResponseTest : HttpClientTest() {
7474 testSimpleRequest(" GET" , " /delete" , 405 )
7575 }
7676
77- @Ignore // FIXME This test is broken since switching runSuspendingTest to runTest
77+ @IgnoreNative // FIXME This test is broken since switching runSuspendingTest to runTest
7878 @Test
7979 fun testHttpPost () = runTest {
8080 testSimpleRequest(" POST" , " /get" , 405 )
@@ -83,7 +83,7 @@ class HttpRequestResponseTest : HttpClientTest() {
8383 testSimpleRequest(" POST" , " /delete" , 405 )
8484 }
8585
86- @Ignore // FIXME This test is broken since switching runSuspendingTest to runTest
86+ @IgnoreNative // FIXME This test is broken since switching runSuspendingTest to runTest
8787 @Test
8888 fun testHttpPut () = runTest {
8989 testSimpleRequest(" PUT" , " /get" , 405 )
@@ -92,7 +92,7 @@ class HttpRequestResponseTest : HttpClientTest() {
9292 testSimpleRequest(" PUT" , " /delete" , 405 )
9393 }
9494
95- @Ignore // FIXME This test is broken since switching runSuspendingTest to runTest
95+ @IgnoreNative // FIXME This test is broken since switching runSuspendingTest to runTest
9696 @Test
9797 fun testHttpDelete () = runTest {
9898 testSimpleRequest(" DELETE" , " /get" , 405 )
@@ -101,7 +101,7 @@ class HttpRequestResponseTest : HttpClientTest() {
101101 testSimpleRequest(" DELETE" , " /delete" , 200 )
102102 }
103103
104- @Ignore // FIXME This test is broken since switching runSuspendingTest to runTest
104+ @IgnoreNative // FIXME This test is broken since switching runSuspendingTest to runTest
105105 @Test
106106 fun testHttpDownload () = runTest {
107107 val response = roundTrip(url = " https://aws-crt-test-stuff.s3.amazonaws.com/http_test_doc.txt" , verb = " GET" )
@@ -111,7 +111,7 @@ class HttpRequestResponseTest : HttpClientTest() {
111111 assertEquals(TEST_DOC_SHA256 , Digest .sha256(response.body).encodeToHex())
112112 }
113113
114- @Ignore // FIXME This test is broken since switching runSuspendingTest to runTest
114+ @IgnoreNative // FIXME This test is broken since switching runSuspendingTest to runTest
115115 @Test
116116 fun testHttpUpload () = runTest {
117117 val bodyToSend = TEST_DOC_LINE
0 commit comments