KEYCLOAK-1183 Split subsystem into separate server and adapter subsystems

- Fix overlooked file renames causing subsystem tests to fail
This commit is contained in:
Marko Strukelj 2015-05-01 10:19:39 +02:00
parent 625fb02dfe
commit 70ce96caa0
2 changed files with 8 additions and 1 deletions

View file

@ -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"
};
}
}

View file

@ -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"
};
}
}