arquillian testsuite: remove adding test realm in migration scenario
This commit is contained in:
parent
52804da497
commit
0392ebab32
1 changed files with 8 additions and 2 deletions
|
@ -21,16 +21,17 @@
|
|||
*/
|
||||
package org.keycloak.testsuite.migration;
|
||||
|
||||
import java.util.List;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.keycloak.representations.idm.RealmRepresentation;
|
||||
import org.keycloak.testsuite.AbstractAuthTest;
|
||||
import org.keycloak.testsuite.AbstractKeycloakTest;
|
||||
import org.keycloak.testsuite.arquillian.migration.Migration;
|
||||
|
||||
/**
|
||||
* @author <a href="mailto:vramik@redhat.com">Vlastislav Ramik</a>
|
||||
*/
|
||||
public class MigrationTest extends AbstractAuthTest {
|
||||
public class MigrationTest extends AbstractKeycloakTest {
|
||||
|
||||
@Test
|
||||
@Migration(versionFrom = "1.6.0.Final")
|
||||
|
@ -42,4 +43,9 @@ public class MigrationTest extends AbstractAuthTest {
|
|||
Assert.fail("TODO");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addTestRealms(List<RealmRepresentation> testRealms) {
|
||||
log.info("Adding no test realms for migration test. Test realm should be migrated from previous vesrion.");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue