Skip to content

Commit fbd919b

Browse files
GH-2327 - Adapt to deprecations in reactive Kotlin-Coroutines >= 1.5.
Closes #2327.
1 parent 9730207 commit fbd919b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/kotlin/org/springframework/data/neo4j/core/ReactiveNeo4jOperationsExtensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ package org.springframework.data.neo4j.core
1717

1818
import kotlinx.coroutines.flow.Flow
1919
import kotlinx.coroutines.reactive.asFlow
20-
import kotlinx.coroutines.reactive.awaitSingle
21-
import kotlinx.coroutines.reactive.awaitSingleOrNull
20+
import kotlinx.coroutines.reactor.awaitSingle
21+
import kotlinx.coroutines.reactor.awaitSingleOrNull
2222
import org.neo4j.cypherdsl.core.Statement
2323
import reactor.core.publisher.Mono
2424

src/test/kotlin/org/springframework/data/neo4j/core/ReactiveNeo4jOperationsExtensionsTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import io.mockk.every
1919
import io.mockk.mockk
2020
import io.mockk.verify
2121
import kotlinx.coroutines.flow.toList
22-
import kotlinx.coroutines.reactive.awaitSingleOrNull
22+
import kotlinx.coroutines.reactor.awaitSingleOrNull
2323
import kotlinx.coroutines.runBlocking
2424
import org.assertj.core.api.Assertions.assertThat
2525
import org.junit.jupiter.api.Nested

0 commit comments

Comments
 (0)