Skip to content

Commit

Permalink
Edited method name for codacy
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeehengg committed Oct 25, 2016
1 parent 0b3c8d7 commit b9331d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/seedu/task/logic/HelpCommandTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void teardown() {
*/

@Test
public void execute_help_invalidArgsFormat() throws Exception {
public void executeHelpInvalidArgsFormat() throws Exception {
String expectedMessage = String.format(HelpCommand.MESSAGE_USAGE);
assertHelpCommandBehavior("help 4 ", expectedMessage);
assertHelpCommandBehavior("help -r ", expectedMessage);
Expand All @@ -72,7 +72,7 @@ public void execute_help_invalidArgsFormat() throws Exception {
*/

@Test
public void execute_help_validArgsFormat() throws Exception {
public void executeHelpValidArgsFormat() throws Exception {
assertHelpCommandBehavior("help add", AddCommand.MESSAGE_USAGE);
assertHelpCommandBehavior("help delete", DeleteCommand.MESSAGE_USAGE);
assertHelpCommandBehavior("help list", ListCommand.MESSAGE_USAGE);
Expand Down

0 comments on commit b9331d3

Please sign in to comment.