Skip to content

Commit

Permalink
fixing compilation failure..
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Apr 7, 2015
1 parent 365828f commit 0f483b7
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -750,7 +750,7 @@ public void test004RunReport() throws Exception {
LOGGER.info("jasper report template: " + new String(Base64.decodeBase64(reportType.getTemplateStyle())));
//WHEN
TestUtil.displayWhen(TEST_NAME);
reportManager.runReport(reportType.asPrismObject(), new HashMap(), task, result);
reportManager.runReport(reportType.asPrismObject(), new ArrayList(), task, result);

// THEN
TestUtil.displayThen(TEST_NAME);
Expand Down Expand Up @@ -1260,7 +1260,7 @@ public void test013CreateAuditLogsReportFromFile() throws Exception {

//WHEN
TestUtil.displayWhen(TEST_NAME);
reportManager.runReport(reportType.asPrismObject(), new HashMap(), task, result);
reportManager.runReport(reportType.asPrismObject(), new ArrayList(), task, result);

// THEN
TestUtil.displayThen(TEST_NAME);
Expand Down Expand Up @@ -1365,7 +1365,7 @@ public void test015CreateUserListReportFromFile() throws Exception {

//WHEN
TestUtil.displayWhen(TEST_NAME);
reportManager.runReport(reportType.asPrismObject(), new HashMap(), task, result);
reportManager.runReport(reportType.asPrismObject(), new ArrayList(), task, result);

// THEN
TestUtil.displayThen(TEST_NAME);
Expand Down Expand Up @@ -1431,7 +1431,7 @@ public void test015ACreateCustomDSReportFromFile() throws Exception {

//WHEN
TestUtil.displayWhen(TEST_NAME);
reportManager.runReport(reportType.asPrismObject(), new HashMap(), task, result);
reportManager.runReport(reportType.asPrismObject(), new ArrayList(), task, result);

// THEN
TestUtil.displayThen(TEST_NAME);
Expand Down Expand Up @@ -1470,7 +1470,7 @@ public void test016CreateReconciliationReportFromFile() throws Exception {

//WHEN
TestUtil.displayWhen(TEST_NAME);
reportManager.runReport(reportType.asPrismObject(), new HashMap(), task, result);
reportManager.runReport(reportType.asPrismObject(), new ArrayList(), task, result);

// THEN
TestUtil.displayThen(TEST_NAME);
Expand Down

0 comments on commit 0f483b7

Please sign in to comment.