Skip to content

Commit 4e5b362

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 092a670 commit 4e5b362

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/security/action/apikey/UpdateCrossClusterApiKeyRequestTests.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ public void testNotEmptyUpdateValidation() {
2121
final var request = new UpdateCrossClusterApiKeyRequest(randomAlphaOfLength(10), null, null, null, null);
2222
final ActionRequestValidationException ve = request.validate();
2323
assertThat(ve, notNullValue());
24-
assertThat(ve.validationErrors(), contains("must update [access] or" +
25-
" [metadata] or [certificate_identity] for cross-cluster API keys"));
24+
assertThat(
25+
ve.validationErrors(),
26+
contains("must update [access] or" + " [metadata] or [certificate_identity] for cross-cluster API keys")
27+
);
2628
}
2729

2830
public void testMetadataKeyValidation() {

0 commit comments

Comments
 (0)