KEYCLOAK-1183 Split subsystem into separate server and adapter subsystems
- Fix overlooked file renames causing subsystem tests to fail
This commit is contained in:
parent
625fb02dfe
commit
70ce96caa0
2 changed files with 8 additions and 1 deletions
|
@ -69,7 +69,7 @@ public class SubsystemParsingTestCase extends AbstractSubsystemBaseTest {
|
|||
@Override
|
||||
protected String[] getSubsystemTemplatePaths() throws IOException {
|
||||
return new String[]{
|
||||
"/subsystem-templates/keycloak.xml"
|
||||
"/subsystem-templates/keycloak-adapter.xml"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,4 +58,11 @@ public class SubsystemParsingTestCase extends AbstractSubsystemBaseTest {
|
|||
protected String getSubsystemXsdPath() throws Exception {
|
||||
return "schema/wildfly-keycloak-server_1_1.xsd";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String[] getSubsystemTemplatePaths() throws IOException {
|
||||
return new String[]{
|
||||
"/subsystem-templates/keycloak-server.xml"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue