Closed retr0h closed 6 years ago
Hi,
I think this is rather related to how yaml handles escaped characters. You could change your yml file either to
---
en:
command:
failed: |
Idempotence test failed because of the following tasks:
%{failed_tasks}
or to
---
en:
command:
failed: "Idempotence test failed because of the following tasks:\n%{failed_tasks}"
@tuvistavie oh duh, thanks that solved it.
It appears strings are getting escaped. My unit tests are failing while switching out to strings generated by i18n.t(). Is there a way to prevent this? I'd like the terminal to handle the newline vs getting an escaped newline.