Fixed test

This commit is contained in:
Luca Frosini 2024-03-08 11:45:06 +01:00
parent 225b0aacb7
commit daaf484e17
1 changed files with 2 additions and 2 deletions

View File

@ -183,13 +183,13 @@ public class PostgreSQLConnectorTest extends ContextTest {
} }
@Ignore // @Ignore
@Test @Test
public void moveStatusFromSrcToDst() throws Exception { public void moveStatusFromSrcToDst() throws Exception {
AggregatorPersistenceStatusSrc apsSrc = AggregatorPersistenceFactory.getAggregatorPersistenceStatusSrc(); AggregatorPersistenceStatusSrc apsSrc = AggregatorPersistenceFactory.getAggregatorPersistenceStatusSrc();
List<AggregationStatus> aggregationStatuses = apsSrc.getAll(); List<AggregationStatus> aggregationStatuses = apsSrc.getAll();
for(AggregationStatus aggregationStatus : aggregationStatuses) { for(AggregationStatus aggregationStatus : aggregationStatuses) {
// analyseAggregationStatus(aggregationStatus); analyseAggregationStatus(aggregationStatus);
} }
} }