[Minor] Fixing broken tests

This commit is contained in:
Robert von Burg 2015-02-08 16:37:49 +01:00
parent 35c35b9d1c
commit 7e0f9c95eb
2 changed files with 3 additions and 4 deletions

View File

@ -90,8 +90,8 @@ public class MigrationsHandler extends StrolchComponent {
this.runMigrationsOnStart = configuration.getBoolean(PROP_RUN_MIGRATIONS_ON_START, Boolean.FALSE);
this.verbose = configuration.getBoolean(PROP_VERBOSE, Boolean.FALSE);
this.pollMigrations = configuration.getBoolean(PROP_VERBOSE, Boolean.FALSE);
this.pollWait = configuration.getInt(PROP_VERBOSE, 5);
this.pollMigrations = configuration.getBoolean(PROP_POLL_MIGRATIONS, Boolean.FALSE);
this.pollWait = configuration.getInt(PROP_POLL_WAIT, 5);
RuntimeConfiguration runtimeConf = configuration.getRuntimeConfiguration();
this.migrationsPath = runtimeConf.getDataDir(MigrationsHandler.class.getName(), PATH_MIGRATIONS, false);

View File

@ -4,7 +4,6 @@
<Runtime>
<applicationName>StrolchRuntimeTest</applicationName>
<Properties>
<dataStoreMode>TRANSIENT</dataStoreMode>
<verbose>true</verbose>
</Properties>
</Runtime>
@ -36,7 +35,7 @@
<name>MigrationsHandler</name>
<api>li.strolch.migrations.MigrationsHandler</api>
<impl>li.strolch.migrations.MigrationsHandler</impl>
<depends>ServiceHandler</depends>
<depends>RealmHandler</depends>
<Properties>
<verbose>true</verbose>
<runMigrationsOnStart>true</runMigrationsOnStart>