jdaugherty opened a new issue, #14319:
URL: https://github.com/apache/grails-core/issues/14319
### Issue description
While working on the performance of the test run, I noticed that grails-gsp
(the plugin) forces the max test parallel to 1. Changing this locally to be
parallel, it succeed. Changing it in the CI to be parallel fails with the
following:
RestfulReverseUrlRenderingTests > testFormTagRendering FAILED
Condition not satisfied:
output == '<form action="/book" method="post" name="myForm"
id="myForm" >save</form>'
| |
| false
| 8 differences (90% similarity)
| <form action="/(restfulB)ook" method="post" name="myForm"
id="myForm" >save</form>
| <form action="/(b-------)ook" method="post" name="myForm"
id="myForm" >save</form>
<form action="/restfulBook" method="post" name="myForm" id="myForm"
>save</form>
at
org.grails.web.mapping.RestfulReverseUrlRenderingTests.testFormTagRendering(RestfulReverseUrlRenderingTests.groovy:30)
FormTagLibTests > testHiddenFieldWithZeroValue PASSED
RestfulReverseUrlRenderingTests > testFormTagRenderGETRequest FAILED
Condition not satisfied:
output == '<form action="/book" method="get" name="myForm"
id="myForm" >create</form>'
| |
| false
| 8 differences (90% similarity)
| <form action="/(restfulB)ook" method="get" name="myForm"
id="myForm" >create</form>
| <form action="/(b-------)ook" method="get" name="myForm"
id="myForm" >create</form>
<form action="/restfulBook" method="get" name="myForm" id="myForm"
>create</form>
at
org.grails.web.mapping.RestfulReverseUrlRenderingTests.testFormTagRenderGETRequest(RestfulReverseUrlRenderingTests.groovy:40)
--
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]