mirror of
https://github.com/square/okhttp.git
synced 2025-07-31 05:04:26 +03:00
Add a proper Kotlin constructor for Request (#7208)
* Add a proper Kotlin constructor for Request This turns out to be very useful throughout our test suite. * Dump updated API * Fix multipleTags Kotlin conversion
This commit is contained in:
@ -49,7 +49,7 @@ class SuspendCallTest(
|
||||
|
||||
private var client = clientTestRule.newClientBuilder().build()
|
||||
|
||||
val request = Request.Builder().url(server.url("/")).build()
|
||||
val request = Request(server.url("/"))
|
||||
|
||||
@Test
|
||||
fun suspendCall() {
|
||||
|
Reference in New Issue
Block a user