removed unneeded parameter

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/infrastructure-tests@130879 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2016-07-28 10:18:40 +00:00
parent daedd74db6
commit bc85d91d0d
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ public class ISSweeperPluginSmartExecutorSchedulerTest extends ScopedTest {
Assert.assertNotNull(proxy);
}
public UUID scheduleTest(Scheduling scheduling, Long sleepTime) throws Exception {
public UUID scheduleTest(Scheduling scheduling) throws Exception {
Map<String, Object> inputs = new HashMap<String, Object>();
logger.debug("Inputs : {}", inputs);
inputs.put(ISSweeperPlugin.EXPIRING_MINUTES_TIMEOUT, 15);
@ -62,7 +62,7 @@ public class ISSweeperPluginSmartExecutorSchedulerTest extends ScopedTest {
CronExpression cronExpression = new CronExpression("0 */10 * * * ?"); // every 10 minutes starting from now
Scheduling scheduling = new Scheduling(cronExpression, true);
scheduling.setGlobal(true);
UUID uuid = scheduleTest(scheduling, new Long(1000*60)); // 1 min
UUID uuid = scheduleTest(scheduling);
logger.debug("Launched with UUID : {}", uuid);
}