Skip to content
This repository has been archived by the owner on Mar 2, 2019. It is now read-only.

Commit

Permalink
Fix bug in successive deletes
Browse files Browse the repository at this point in the history
  • Loading branch information
cricketer94 committed Oct 10, 2016
1 parent aeadfd4 commit 5332abc
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -39,8 +39,8 @@ public void testDeleteFirst() throws IllegalValueException {
@Test
public void testSuccessiveDeletes() throws IllegalValueException {
ImmutableTask toDeleteFirst = getTaskAt(1);
ImmutableTask toDeleteNext = getTaskAt(1);
ImmutableTask toDeleteLast = getTaskAt(1);
ImmutableTask toDeleteNext = getTaskAt(2);
ImmutableTask toDeleteLast = getTaskAt(3);
setParameter("1");
execute();
assertTaskNotExist(toDeleteFirst);
Expand Down

0 comments on commit 5332abc

Please sign in to comment.