Skip to content

Commit

Permalink
fix LogServiceTest
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreybakker committed Aug 6, 2017
1 parent 7db25cf commit 662ed33
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/test/java/honours/ing/banq/log/LogServiceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@
*/
public class LogServiceTest extends BoilerplateTest {

private static final DateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd");

@Autowired
private LogService log;

@Test
public void getEventLogs() throws Exception {
List<LogBean> logs = log.getEventLogs(
DATE_FORMAT.format(new Date(1)), DATE_FORMAT.format(timeService.getDate().getDate()));
"1970-1-1", "2100-1-1");

assertTrue(logs.size() > 0);
}
Expand Down

0 comments on commit 662ed33

Please sign in to comment.