Skip to content

Commit

Permalink
fix(executor/exec): manage \n in xml output (#576)
Browse files Browse the repository at this point in the history
* fix(executor/exec): manage \n in xml output

Signed-off-by: Yvonnick Esnault <yvonnick.esnault@corp.ovh.com>
  • Loading branch information
yesnault committed Aug 23, 2022
1 parent f605d35 commit dc8e310
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions process_teststep.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ func (v *Venom) RunTestStep(ctx context.Context, e ExecutorRunner, tc *TestCase,
tsResult.appendFailure(assertRes.errors...)
}

tsResult.Systemerr += assertRes.systemerr
tsResult.Systemout += assertRes.systemout
tsResult.Systemerr += assertRes.systemerr + "\n"
tsResult.Systemout += assertRes.systemout + "\n"

return result
}
Expand Down

0 comments on commit dc8e310

Please sign in to comment.