Skip to content

Commit

Permalink
Kotlin 2.0.21. Ktor 3.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ychescale9 committed Oct 10, 2024
1 parent 4b8bbcb commit 4d531d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[versions]
kotlin = "2.0.20"
kotlin = "2.0.21"
spring-boot = "3.3.4"
spring-dependencyManagement = "1.1.6"
ktor = "3.0.0-rc-2"
ktor = "3.0.0"
dgsBom = "9.1.2"
dgsCodegen = "6.3.0"
detekt = "1.23.7"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class RedisClientTest {
@Test
fun `get(key) returns result when API call succeeds`() = runBlocking {
val mockEngine = MockEngine { request ->
when (request.url.pathSegments.last()) {
when (request.url.rawSegments.last()) {
"a" -> respond(content = "{ \"result\": null }")
"b" -> respond(content = "{ \"result\": 3 }")
"c" -> respond(content = "{ \"result\": \"foo\" }")
Expand Down

0 comments on commit 4d531d3

Please sign in to comment.