Rename BodyBuilder#bodyAndAwait to bodyValueAndAwait

This commit is contained in:
Sebastien Deleuze
2019-09-05 13:32:39 +02:00
parent 73f5d05fd9
commit 40a55b412d
3 changed files with 5 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ class ServerResponseExtensionsTests {
val body = "foo"
every { bodyBuilder.bodyValue(ofType<String>()) } returns Mono.just(response)
runBlocking {
bodyBuilder.bodyAndAwait(body)
bodyBuilder.bodyValueAndAwait(body)
}
verify {
bodyBuilder.bodyValue(ofType<String>())