Skip to content

Commit aba880c

Browse files
committed
Fix tests
1 parent 72cef7f commit aba880c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/main/scala/org/http4s/dom/TestRoutes.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ object TestRoutes {
3232
}
3333

3434
val post = Some(request).filter(_.method == Method.POST).map { r =>
35-
F.delay(Response(body = r.body))
35+
F.delay(Response(entity = r.entity))
3636
}
3737

3838
get.orElse(post).getOrElse(F.delay(Response[F](NotFound)))

0 commit comments

Comments
 (0)