fixed build by correcting the date based breaking tests
This commit is contained in:
parent
b3c5084291
commit
6ae65b1d21
|
@ -74,7 +74,8 @@ class GetTaskIdsOfClassificationCategoryReportAccTest extends AbstractReportAccT
|
|||
void should_selectCompletedItems_When_CompletedTimeStampIsRequested() throws Exception {
|
||||
final List<TimeIntervalColumnHeader> columnHeaders = getListOfColumnHeaders();
|
||||
|
||||
final List<SelectedItem> selectedItems = Arrays.asList(EXTERN, AUTOMATIC, MANUAL);
|
||||
final List<SelectedItem> selectedItems =
|
||||
Collections.singletonList(new SelectedItem("EXTERN", null, 0, 0));
|
||||
|
||||
List<String> ids =
|
||||
MONITOR_SERVICE
|
||||
|
@ -83,7 +84,9 @@ class GetTaskIdsOfClassificationCategoryReportAccTest extends AbstractReportAccT
|
|||
.inWorkingDays()
|
||||
.listTaskIdsForSelectedItems(selectedItems, TaskTimestamp.COMPLETED);
|
||||
|
||||
assertThat(ids).containsExactly("TKI:000000000000000000000000000000000032");
|
||||
assertThat(ids)
|
||||
.containsExactly(
|
||||
"TKI:000000000000000000000000000000000001", "TKI:000000000000000000000000000000000002");
|
||||
}
|
||||
|
||||
@WithAccessId(user = "monitor")
|
||||
|
|
Loading…
Reference in New Issue