You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Newlines in the message of a junit_report::TestCase::failure() are stored in the XML as straight newlines. When parsing the XML (for example with python-junit-xml) they are automatically stripped. Instead the newline should be encoded as .
As a workaround I tried &error.to_string().replace("\n", " "), but the is then encoded as 

The text was updated successfully, but these errors were encountered:
Newlines in the message of a
junit_report::TestCase::failure()
are stored in the XML as straight newlines. When parsing the XML (for example with python-junit-xml) they are automatically stripped. Instead the newline should be encoded as
.As a workaround I tried
&error.to_string().replace("\n", " ")
, but the
is then encoded as

The text was updated successfully, but these errors were encountered: