Skip to content

Commit ac89b49

Browse files
[CI] Auto commit changes from spotless
1 parent 53bdef0 commit ac89b49

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/security/authz/privilege/ManageRolesPrivilegesTests.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,12 @@ public void testParseInvalidPrivilege() throws Exception {
274274
}
275275
""";
276276

277-
try (XContentParser parser = xContent.createParser(XContentParserConfiguration.EMPTY, invalidJsonString.getBytes(StandardCharsets.UTF_8))) {
277+
try (
278+
XContentParser parser = xContent.createParser(
279+
XContentParserConfiguration.EMPTY,
280+
invalidJsonString.getBytes(StandardCharsets.UTF_8)
281+
)
282+
) {
278283
assertThat(parser.nextToken(), equalTo(XContentParser.Token.START_OBJECT));
279284
assertThat(parser.nextToken(), equalTo(XContentParser.Token.FIELD_NAME));
280285

0 commit comments

Comments
 (0)