dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #33528
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 17124: AnalyticsTableTest, minor
------------------------------------------------------------
revno: 17124
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2014-10-15 15:57:49 +0200
message:
AnalyticsTableTest, minor
modified:
dhis-2/dhis-services/dhis-service-analytics/src/test/java/org/hisp/dhis/analytics/table/AnalyticsTableTest.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-analytics/src/test/java/org/hisp/dhis/analytics/table/AnalyticsTableTest.java'
--- dhis-2/dhis-services/dhis-service-analytics/src/test/java/org/hisp/dhis/analytics/table/AnalyticsTableTest.java 2014-10-15 10:07:48 +0000
+++ dhis-2/dhis-services/dhis-service-analytics/src/test/java/org/hisp/dhis/analytics/table/AnalyticsTableTest.java 2014-10-15 13:57:49 +0000
@@ -28,15 +28,15 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+import static org.junit.Assert.assertEquals;
+
import org.hisp.dhis.analytics.AnalyticsTable;
-import org.hisp.dhis.calendar.DateTimeUnit;
import org.hisp.dhis.period.Period;
import org.hisp.dhis.period.YearlyPeriodType;
import org.hisp.dhis.program.Program;
+import org.joda.time.DateTime;
import org.junit.Test;
-import static org.junit.Assert.*;
-
/**
* @author Lars Helge Overland
*/
@@ -48,7 +48,7 @@
Program program = new Program( "ProgramA", "DescriptionA" );
program.setUid( "UIDA" );
- Period period = new YearlyPeriodType().createPeriod( new DateTimeUnit( 2014, 1, 1 ).toJdkDate() );
+ Period period = new YearlyPeriodType().createPeriod( new DateTime( 2014, 1, 1, 0, 0 ).toDate() );
AnalyticsTable tableA = new AnalyticsTable( "analytics_event", null, period, program );