If an error message contains backslashes, YAML output looks like this: ```yaml --- message: "Test failed\" severity: failed ... ``` which is not valid since the backslash now looks like it's escaping the closing double quote. Instead it should be: ```yaml --- message: "Test failed\\" severity: failed ... ```
Activity
Reporter: Escape backslashes in YAML output
Krinkle commentedon Jul 30, 2020
I believe this is a duplicate of #109 which was fixed in 1.2.2. Let me know if you still find an issue.