Skip to content
Open
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 @@ -70,7 +70,6 @@ void testPluginsAutoLoaded() {
// Then
Assertions.assertNotNull(pluginNames);
Assertions.assertFalse(pluginNames.isEmpty(), "Should load at least built-in plugins");
Assertions.assertTrue(pluginNames.contains("oidc"), "Should include oidc plugin");
Assertions.assertTrue(pluginNames.contains("password"), "Should include password plugin");
}

Expand Down Expand Up @@ -147,10 +146,6 @@ void testGetFactory() {
// Then
Assertions.assertTrue(factory.isPresent());
Assertions.assertEquals("password", factory.get().name());

Optional<AuthenticationPluginFactory> oidcFactory = pluginManager.getFactory("oidc");
Assertions.assertTrue(oidcFactory.isPresent());
Assertions.assertEquals("oidc", oidcFactory.get().name());
}

@Test
Expand Down
Loading