dsubelman commented on PR #523:
URL: https://github.com/apache/maven-surefire/pull/523#issuecomment-1103436778

   If the test fails with escaping characters `	`, you can try using 
`String.replaceAll(String, String)` with regex.
   
   Instead of:
   
       return argLine
           .replace( "\n", " " )
           .replace( "\r", " " )
           .replace( "\t", " " );
   
   You can do:
   
       return argLine.replaceAll("\\s+", " ");
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to