Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo committed Feb 6, 2022
1 parent d64ec2a commit 587d402
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ object ProcessGroupSpecs extends DefaultRunnableSpec with ProxSpecHelpers {
val processGroup = (p1 | p2).customizedPerProcess.foldErrors(
{
case p if p == p1 => ZPipeline.utf8Decode >>> ZPipeline.splitLines
case p if p == p2 => ZPipeline.utf8Decode >>> ZPipeline.splitLines >>> ZPipeline.map(_.reverse)
case p if p == p2 => ZPipeline.utf8Decode >>> ZPipeline.splitLines >>> ZPipeline.map[String, String](_.reverse)
},
Vector.empty,
(l: Vector[Option[Char]], s: String) => l :+ s.headOption
Expand Down

0 comments on commit 587d402

Please sign in to comment.