diff options
Diffstat (limited to 'src/test/java/org/onap/aai/util/SendMigrationNotificationsTest.java')
-rw-r--r-- | src/test/java/org/onap/aai/util/SendMigrationNotificationsTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/java/org/onap/aai/util/SendMigrationNotificationsTest.java b/src/test/java/org/onap/aai/util/SendMigrationNotificationsTest.java index 2f6a4e0..eb2e2a3 100644 --- a/src/test/java/org/onap/aai/util/SendMigrationNotificationsTest.java +++ b/src/test/java/org/onap/aai/util/SendMigrationNotificationsTest.java @@ -138,7 +138,7 @@ public class SendMigrationNotificationsTest extends AAISetup { @Test public void processEverything() throws Exception { SendMigrationNotifications s = spy(new SendMigrationNotifications( - loaderFactory, schemaVersions, REALTIME_CONFIG, FILE, Collections.EMPTY_SET, 0, 0, "test", EventAction.UPDATE, "DMAAP-LOAD")); + loaderFactory, schemaVersions, REALTIME_CONFIG, FILE, Collections.emptySet(), 0, 0, "test", EventAction.UPDATE, "DMAAP-LOAD")); doNothing().when(s).trigger(); doNothing().when(s).cleanup(); s.process("/aai/"); @@ -171,7 +171,7 @@ public class SendMigrationNotificationsTest extends AAISetup { @Test public void processEverythingBatched2() throws Exception { SendMigrationNotifications s = spy(new SendMigrationNotifications( - loaderFactory, schemaVersions, REALTIME_CONFIG, FILE, Collections.EMPTY_SET, 0, 2, "test", EventAction.UPDATE, "DMAAP-LOAD")); + loaderFactory, schemaVersions, REALTIME_CONFIG, FILE, Collections.emptySet(), 0, 2, "test", EventAction.UPDATE, "DMAAP-LOAD")); doNothing().when(s).trigger(); doNothing().when(s).cleanup(); s.process("/aai/"); @@ -182,7 +182,7 @@ public class SendMigrationNotificationsTest extends AAISetup { @Test public void processEverythingBatched3() throws Exception { SendMigrationNotifications s = spy(new SendMigrationNotifications( - loaderFactory, schemaVersions, REALTIME_CONFIG, FILE, Collections.EMPTY_SET, 0, 3, "test", EventAction.UPDATE, "DMAAP-LOAD")); + loaderFactory, schemaVersions, REALTIME_CONFIG, FILE, Collections.emptySet(), 0, 3, "test", EventAction.UPDATE, "DMAAP-LOAD")); doNothing().when(s).trigger(); doNothing().when(s).cleanup(); s.process("/aai/"); @@ -190,4 +190,4 @@ public class SendMigrationNotificationsTest extends AAISetup { } -}
\ No newline at end of file +} |