File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed
x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authz/store Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -518,9 +518,6 @@ tests:
518518- class : org.elasticsearch.indices.cluster.FieldCapsForceConnectTimeoutIT
519519 method : testTimeoutSetting
520520 issue : https://github.com/elastic/elasticsearch/issues/132179
521- - class : org.elasticsearch.xpack.security.authz.store.CompositeRolesStoreTests
522- method : testCacheCleanupOnProjectDeletion
523- issue : https://github.com/elastic/elasticsearch/issues/132218
524521- class : org.elasticsearch.test.rest.yaml.MDPYamlTestSuiteIT
525522 method : test {yaml=mdp/10_basic/Index using shared data path}
526523 issue : https://github.com/elastic/elasticsearch/issues/132223
@@ -571,4 +568,4 @@ tests:
571568# issue: "https://github.com/elastic/elasticsearch/..."
572569# - class: "org.elasticsearch.xpack.esql.**"
573570# method: "test {union_types.MultiIndexIpStringStatsInline *}"
574- # issue: "https://github.com/elastic/elasticsearch/..."
571+ # issue: "https://github.com/elastic/elasticsearch/..."
Original file line number Diff line number Diff line change @@ -2313,20 +2313,15 @@ public void testCacheCleanupOnProjectDeletion() throws Exception {
23132313 doCallRealMethod ().when (fileRolesStore ).accept (anySet (), anyActionListener ());
23142314 when (fileRolesStore .roleDescriptors (anySet ())).thenReturn (Set .of (roleDescriptor ));
23152315
2316- final NativeRolesStore nativeRolesStore = mock (NativeRolesStore .class );
2317- doCallRealMethod ().when (nativeRolesStore ).accept (anySet (), anyActionListener ());
2318- final ReservedRolesStore reservedRolesStore = mock (ReservedRolesStore .class );
2319- doCallRealMethod ().when (reservedRolesStore ).accept (anySet (), anyActionListener ());
2320-
23212316 final AtomicReference <ProjectId > projectId = new AtomicReference <>(ProjectId .DEFAULT );
23222317 final ProjectResolver projectResolver = TestProjectResolvers .singleProject (projectId ::get );
23232318
23242319 CompositeRolesStore compositeRolesStore = buildCompositeRolesStore (
23252320 Settings .EMPTY ,
23262321 clusterService ,
23272322 fileRolesStore ,
2328- nativeRolesStore ,
2329- reservedRolesStore ,
2323+ null ,
2324+ null ,
23302325 null ,
23312326 null ,
23322327 null ,
You can’t perform that action at this time.
0 commit comments