Skip to content

Commit 70b724f

Browse files
committed
ktlint
1 parent 1b0ff52 commit 70b724f

File tree

1 file changed

+3
-3
lines changed
  • runtime/protocol/http-client-engines/http-client-engine-crt/jvm/test/aws/smithy/kotlin/runtime/http/engine/crt

1 file changed

+3
-3
lines changed

runtime/protocol/http-client-engines/http-client-engine-crt/jvm/test/aws/smithy/kotlin/runtime/http/engine/crt/RequestUtilTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ package aws.smithy.kotlin.runtime.http.engine.crt
66

77
import aws.smithy.kotlin.runtime.content.ByteStream
88
import aws.smithy.kotlin.runtime.http.Headers
9-
import aws.smithy.kotlin.runtime.http.request.HttpRequest
109
import aws.smithy.kotlin.runtime.http.HttpMethod
10+
import aws.smithy.kotlin.runtime.http.request.HttpRequest
1111
import aws.smithy.kotlin.runtime.http.toHttpBody
1212
import aws.smithy.kotlin.runtime.net.url.Url
1313
import kotlinx.coroutines.test.runTest
1414
import kotlin.test.Test
15+
import kotlin.test.assertEquals
1516
import kotlin.test.assertFalse
1617
import kotlin.test.assertTrue
17-
import kotlin.test.assertEquals
1818

1919
class RequestUtilTest {
2020
@Test
@@ -59,7 +59,7 @@ class RequestUtilTest {
5959
HttpMethod.POST,
6060
url = Url.parse("https://notarealurl.com"),
6161
headers = Headers { set("Content-Length", data.length.toString()) },
62-
body = ByteStream.fromString(data).toHttpBody()
62+
body = ByteStream.fromString(data).toHttpBody(),
6363
)
6464

6565
val crtRequest = request.toCrtRequest(coroutineContext)

0 commit comments

Comments
 (0)