From b0a83454b0054f493bc7370901b36ed0252936a3 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Thu, 3 Aug 2017 13:13:07 +0000 Subject: [PATCH] Refactoring Infrastructure Tests git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/infrastructure-tests@152454 82a268e6-3cf1-43bd-a215-b396298e98cf --- ...ggregatorAccountingPluginSmartExecutorSchedulerTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename src/test/java/org/gcube/{accounting => }/aggregator/plugin/AggregatorAccountingPluginSmartExecutorSchedulerTest.java (96%) diff --git a/src/test/java/org/gcube/accounting/aggregator/plugin/AggregatorAccountingPluginSmartExecutorSchedulerTest.java b/src/test/java/org/gcube/aggregator/plugin/AggregatorAccountingPluginSmartExecutorSchedulerTest.java similarity index 96% rename from src/test/java/org/gcube/accounting/aggregator/plugin/AggregatorAccountingPluginSmartExecutorSchedulerTest.java rename to src/test/java/org/gcube/aggregator/plugin/AggregatorAccountingPluginSmartExecutorSchedulerTest.java index d0ab77a..c7060fa 100644 --- a/src/test/java/org/gcube/accounting/aggregator/plugin/AggregatorAccountingPluginSmartExecutorSchedulerTest.java +++ b/src/test/java/org/gcube/aggregator/plugin/AggregatorAccountingPluginSmartExecutorSchedulerTest.java @@ -1,7 +1,7 @@ /** * */ -package org.gcube.accounting.aggregator.plugin; +package org.gcube.aggregator.plugin; import java.util.Calendar; import java.util.HashMap; @@ -101,7 +101,7 @@ public class AggregatorAccountingPluginSmartExecutorSchedulerTest extends Scoped public void cronExpPreviousMustBeTerminated() throws Exception { // Every 15 minutes CronExpression cronExpression = new CronExpression("0 0/15 * 1/1 * ? *"); - Scheduling scheduling = new Scheduling(cronExpression, true); + Scheduling scheduling = new Scheduling(cronExpression, false); scheduling.setGlobal(true); Map inputs = getAggregateInputs(); @@ -114,7 +114,7 @@ public class AggregatorAccountingPluginSmartExecutorSchedulerTest extends Scoped public void recovery() throws Exception { // Every Day at 8:00 CronExpression cronExpression = new CronExpression("0 0 8 1/1 * ? *"); - Scheduling scheduling = new Scheduling(cronExpression, true); + Scheduling scheduling = new Scheduling(cronExpression, false); scheduling.setGlobal(true); Map inputs = getRecoveryInputs();