From 4bcb139985525cd91a556794179f7faa53bf3938 Mon Sep 17 00:00:00 2001 From: Byung-Woo Jun Date: Wed, 12 Sep 2018 08:05:33 -0400 Subject: Fix the test time range Widen the test time range to avoid time zone issue Change-Id: I1f69fdff4c6a92728fab068eea415adc8bf4937e Issue-ID: SO-1023 Signed-off-by: byungwoojun --- .../data/repository/InfraActiveRequestsRepositoryImplTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mso-api-handlers/mso-requests-db-repositories/src/test/java') diff --git a/mso-api-handlers/mso-requests-db-repositories/src/test/java/org/onap/so/db/request/data/repository/InfraActiveRequestsRepositoryImplTest.java b/mso-api-handlers/mso-requests-db-repositories/src/test/java/org/onap/so/db/request/data/repository/InfraActiveRequestsRepositoryImplTest.java index d889a15fc4..b7eb7642a2 100644 --- a/mso-api-handlers/mso-requests-db-repositories/src/test/java/org/onap/so/db/request/data/repository/InfraActiveRequestsRepositoryImplTest.java +++ b/mso-api-handlers/mso-requests-db-repositories/src/test/java/org/onap/so/db/request/data/repository/InfraActiveRequestsRepositoryImplTest.java @@ -49,8 +49,8 @@ import org.springframework.test.context.junit4.SpringRunner; public class InfraActiveRequestsRepositoryImplTest { private static final int MAX_LIMIT = 1; - private static final long END_TIME_IN_MILISEC = 1482436800000l; - private static final long START_TIME_IN_MILISEC = 1482429600000l; + private static final long END_TIME_IN_MILISEC = 1482580740000l; // December 23, 2016 23:59 PM + private static final long START_TIME_IN_MILISEC = 1482282000000l; // December 21, 2016 01:00 AM private static final String REQUEST_ID_VALUE = "00032ab7-3fb3-42e5-965d-8ea592502017"; private static final String SERVICE_INSTANCE_ID_VALUE = "e3b5744d-2ad1-4cdd-8390-c999a38829bc"; -- cgit 1.2.3-korg