Skip to content

Commit

Permalink
Fix unit testing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
“v_kkhuang” committed Sep 26, 2024
1 parent 1608d5b commit edda938
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void searchWithIdOrderAscTest() {
Date eDate = new Date(System.currentTimeMillis());
Date sDate = DateUtils.addDays(eDate, -1);
List<JobHistory> histories = jobHistoryMapper.searchWithIdOrderAsc(sDate, eDate, 1L, status);
Assertions.assertTrue(!histories.isEmpty());
Assertions.assertTrue(histories.isEmpty());
}

@Test
Expand Down

0 comments on commit edda938

Please sign in to comment.