We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reformatting this file
import spock.lang.Specification class MySpec extends Specification { def "test"() { expect: [] == [] toString() } }
results in this
import spock.lang.Specification class MySpec extends Specification { def "test"() { expect: []== []toString() } }
Notice the space at the end of line 6
Groovy Plugin Version: Eclipse Groovy Development Tools 4.0.0.v202012170419-e2012 Eclipse version: Version: 2020-12 (4.18.0) Build id: 20201210-1552
The text was updated successfully, but these errors were encountered:
There is code in the formatter to compact list literals, including trailing whitespace. This is what is affecting your test spec.
Sorry, something went wrong.
Fix for #1219: find offset of rbrack before compacting list expression
1ec3d8d
ready to test
eric-milles
No branches or pull requests
Reformatting this file
results in this
Notice the space at the end of line 6
Groovy Plugin Version: Eclipse Groovy Development Tools 4.0.0.v202012170419-e2012
Eclipse version: Version: 2020-12 (4.18.0) Build id: 20201210-1552
The text was updated successfully, but these errors were encountered: