Skip to content

Commit

Permalink
IQSS#3702 fixed Unit Tests errors
Browse files Browse the repository at this point in the history
  • Loading branch information
luddaniel committed Nov 29, 2023
1 parent 5e5377f commit 1112ae7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void testReleasedDataset() {
String actual = null;
Dataset updatedDataset = null;
try {
updatedDataset = testEngine.submit(new ReturnDatasetToAuthorCommand(dataverseRequest, dataset, ""));
updatedDataset = testEngine.submit(new ReturnDatasetToAuthorCommand(dataverseRequest, dataset, "Update Your Files, Dummy"));
} catch (CommandException ex) {
actual = ex.getMessage();
}
Expand All @@ -171,7 +171,7 @@ public void testNotInReviewDataset() {
String actual = null;
Dataset updatedDataset = null;
try {
updatedDataset = testEngine.submit(new ReturnDatasetToAuthorCommand(dataverseRequest, dataset, ""));
updatedDataset = testEngine.submit(new ReturnDatasetToAuthorCommand(dataverseRequest, dataset, "Update Your Files, Dummy"));
} catch (CommandException ex) {
actual = ex.getMessage();
}
Expand Down

0 comments on commit 1112ae7

Please sign in to comment.