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
See test cases below:
@Test fun `shorter new key with indented config`() = assertChanged( recipe = ChangePropertyKey("a.b.c.d.e", "x.y", null, null), before = """ a: b: c: d: e: child: true """, after = """ x.y: child: true """ /* actual: x.y: child: true */ ) @Test fun `longer new key with indented config`() = assertChanged( recipe = ChangePropertyKey("x.y", "a.b.c.d.e", null, null), before = """ x: y: child: true """, after = """ a.b.c.d.e: child: true """ /* actual: a.b.c.d.e: child: true */ )
The text was updated successfully, but these errors were encountered:
Add disabled tests for issue #1873
b0ab650
Update ChangePropertyKey to auto-format modified mappings. (issue #1873)
88fd0df
90294ce
ffea512
Fixed by ffea512
Sorry, something went wrong.
pway99
No branches or pull requests
See test cases below:
The text was updated successfully, but these errors were encountered: