Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
bertoia committed Nov 6, 2016
1 parent 526e3ef commit a85cf7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/seedu/priorityq/logic/LogicManagerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ public void execute_mark_alreadyMarked() throws Exception {
assertCommandBehavior("mark 1",
String.format(MarkCommand.MESSAGE_SUCCESS, alreadyMarked),
expectedTM,
new ArrayList<>());
expectedTM.getTaskList());
}

@Test
Expand Down Expand Up @@ -777,7 +777,7 @@ public void execute_undoUnmark_successful() throws Exception {
assertCommandBehavior("undo",
String.format(UnmarkCommand.MESSAGE_UNDO_SUCCESS, toBeUnmarked),
expectedTM,
new ArrayList<>());
expectedTM.getTaskList());
}

@Test
Expand Down

0 comments on commit a85cf7f

Please sign in to comment.