diff --git a/zio-http/jvm/src/test/scala/zio/http/BodySpec.scala b/zio-http/jvm/src/test/scala/zio/http/BodySpec.scala index ef2b271be5..9ace903c27 100644 --- a/zio-http/jvm/src/test/scala/zio/http/BodySpec.scala +++ b/zio-http/jvm/src/test/scala/zio/http/BodySpec.scala @@ -69,8 +69,7 @@ object BodySpec extends ZIOHttpSpec { form <- ZIO.succeed(Form(FormField.simpleField("name", "test-name"))) body <- Body.fromMultipartFormUUID(form) boundaryOpt = body.contentType.flatMap(_.boundary) - _ <- zio.logInfo(s"Generated boundary: ${boundaryOpt.getOrElse("No boundary found")}") - + _ <- ZIO.logInfo(s"Generated boundary: ${boundaryOpt.getOrElse("No boundary found")}") } yield assertTrue(boundaryOpt.isDefined) && assertTrue(boundaryOpt.get.matches("^[a-zA-Z0-9'()+_,-./:=?]+$")) },