Skip to content

Commit

Permalink
Remove wildcard import
Browse files Browse the repository at this point in the history
  • Loading branch information
wn committed Oct 22, 2018
1 parent de4df2a commit fdffa66
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package seedu.address.logic.commands;

import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import java.util.function.Predicate;

Expand Down Expand Up @@ -71,7 +73,8 @@ public void execute_newPasswordAcceptedByModel_setPassSuccessful() throws Except

CommandResult commandResult = new SetPasswordCommand(currentPass, newPass).execute(modelStub, commandHistory);

assertEquals(String.format(SetPasswordCommand.MESSAGE_SELECT_CHANGE_PASSWORD_SUCCESS), commandResult.feedbackToUser);
assertEquals(String.format(SetPasswordCommand.MESSAGE_SELECT_CHANGE_PASSWORD_SUCCESS),
commandResult.feedbackToUser);
assertEquals(EMPTY_COMMAND_HISTORY, commandHistory);
}

Expand Down

0 comments on commit fdffa66

Please sign in to comment.