Skip to content

Commit

Permalink
update test based on readResolve working
Browse files Browse the repository at this point in the history
  • Loading branch information
wowselim committed Nov 20, 2023
1 parent 51a22a4 commit 56729d4
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import kotlinx.coroutines.flow.launchIn
import kotlinx.coroutines.flow.onEach
import kotlinx.coroutines.runBlocking
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Assertions.assertNotEquals
import org.junit.jupiter.api.Test
import java.io.Serializable

Expand Down Expand Up @@ -93,7 +92,7 @@ class ClusteredCustomCodecTest {

assertEquals(WeatherService.WeatherReport.Success("Sunny"), weatherChannel.receive())
assertEquals(WeatherService.WeatherReport.Failure("Unknown city 'Berlin'"), weatherChannel.receive())
assertNotEquals(WeatherService.WeatherBalloon, objectChannel.receive())
assertEquals(WeatherService.WeatherBalloon, objectChannel.receive())
} finally {
serviceVertx?.run { close().coAwait() }
consumerVertx?.run { close().coAwait() }
Expand Down

0 comments on commit 56729d4

Please sign in to comment.