Skip to content

Commit

Permalink
Ignore https tests(win agents bug)
Browse files Browse the repository at this point in the history
  • Loading branch information
e5l committed Feb 21, 2019
1 parent 270f470 commit c88617b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ktor-client/ktor-client-curl/posix/test/CurlEnginesTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ data class HttpBinResponse(
class CurlEnginesTest {

@Test
@Ignore
fun getTest(): Unit = clientTest { client ->
val response = client.get<HttpBinResponse>("https://httpbin.org/get")
val expected = HttpBinResponse(
Expand All @@ -38,6 +39,7 @@ class CurlEnginesTest {
}

@Test
@Ignore
fun postTest() = clientTest { client ->
val response = client.post<HttpBinResponse>("https://httpbin.org/post") {
body = "Hello, bin!"
Expand Down

0 comments on commit c88617b

Please sign in to comment.