Skip to content

Commit

Permalink
Drop flaky test (#3756)
Browse files Browse the repository at this point in the history
(cherry picked from commit 12694bf)
  • Loading branch information
e5l committed Nov 3, 2023
1 parent a65b2ed commit 2d0ddda
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,6 @@ class ConnectionTest {
Unit
}

@Test
fun tlsWithCloseTest(): Unit = runBlocking {
val selectorManager = ActorSelectorManager(Dispatchers.IO)
val socket = aSocket(selectorManager)
.tcp()
.connect("www.google.com", port = 443)
.tls(Dispatchers.Default)

val channel = socket.openWriteChannel(autoFlush = true)
socket.close()
assertEquals(42, channel.writeAvailable(ByteArray(42)))
assertTrue(channel.isClosedForWrite)
}

@Test
@Ignore
fun clientCertificatesAuthTest() {
Expand Down

0 comments on commit 2d0ddda

Please sign in to comment.