Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yschimke committed Feb 10, 2024
1 parent dfa7c34 commit 4c2c12c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions okhttp/src/test/java/okhttp3/OkHttpClientConstructionTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@ class OkHttpClientConstructionTest {

val call = client.newCall(Request("https://example.org/robots.txt".toHttpUrl()))

val exception =
assertThrows<NoSuchAlgorithmException> {
call.execute()
}
assertThrows<NoSuchAlgorithmException> {
call.execute()
}
}

class ExplosivePlatform(private val explode: () -> Nothing) : Platform() {
Expand Down

0 comments on commit 4c2c12c

Please sign in to comment.