Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,7 @@ public void testDuplicateFlagEntitlements() {
)
);
assertEquals(
"[server] using module [test] found duplicate flag entitlements "
+ "[org.elasticsearch.entitlement.runtime.policy.CreateClassLoaderEntitlement]",
"[server] using module [test] found duplicate flag entitlements " + "[" + CreateClassLoaderEntitlement.class.getName() + "]",
iae.getMessage()
);

Expand All @@ -322,8 +321,7 @@ public void testDuplicateFlagEntitlements() {
)
);
assertEquals(
"[agent] using module [unnamed] found duplicate flag entitlements "
+ "[org.elasticsearch.entitlement.runtime.policy.CreateClassLoaderEntitlement]",
"[agent] using module [unnamed] found duplicate flag entitlements " + "[" + CreateClassLoaderEntitlement.class.getName() + "]",
iae.getMessage()
);

Expand Down Expand Up @@ -355,8 +353,7 @@ public void testDuplicateFlagEntitlements() {
)
);
assertEquals(
"[plugin1] using module [test] found duplicate flag entitlements "
+ "[org.elasticsearch.entitlement.runtime.policy.CreateClassLoaderEntitlement]",
"[plugin1] using module [test] found duplicate flag entitlements " + "[" + CreateClassLoaderEntitlement.class.getName() + "]",
iae.getMessage()
);
}
Expand Down
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,6 @@ tests:
issue: https://github.com/elastic/elasticsearch/issues/121293
- class: org.elasticsearch.xpack.inference.common.InferenceServiceNodeLocalRateLimitCalculatorTests
issue: https://github.com/elastic/elasticsearch/issues/121294
- class: org.elasticsearch.entitlement.runtime.policy.PolicyManagerTests
method: testDuplicateFlagEntitlements
issue: https://github.com/elastic/elasticsearch/issues/121300

# Examples:
#
Expand Down