Skip to content

Commit 73ffa54

Browse files
committed
Runed the gradle command formatKotlin
1 parent f81d8fa commit 73ffa54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/kotlin/examples/kotlin/ktor/resourceserver/OAuth2ResourceServerAppTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class OAuth2ResourceServerAppTest {
3636
this.application {
3737
module(authConfig)
3838
}
39-
val response = client.get("/hello1"){
40-
header("Authorization", "Bearer ${mockOAuth2Server.tokenFromProvider1()}")
39+
val response = client.get("/hello1") {
40+
header("Authorization", "Bearer ${mockOAuth2Server.tokenFromProvider1()}")
4141
}
4242

4343
response.status shouldBe HttpStatusCode.OK
@@ -56,7 +56,7 @@ class OAuth2ResourceServerAppTest {
5656
module(authConfig)
5757
}
5858

59-
val response = client.get("/hello2"){
59+
val response = client.get("/hello2") {
6060
header("Authorization", "Bearer ${mockOAuth2Server.tokenFromProvider2()}")
6161
}
6262
response.status shouldBe HttpStatusCode.OK

0 commit comments

Comments
 (0)