Skip to content

Commit

Permalink
Fix failed build
Browse files Browse the repository at this point in the history
  • Loading branch information
modembcc committed Apr 15, 2024
1 parent b00b4bf commit 0c08837
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void parse_emptyArgs_throwsParseException() {
assertParseFailure(
parser,
" /to testing /in Code",
"Please enter the task, project and member fields");
"Please enter the task, project and member fields.");

assertParseFailure(
parser,
Expand All @@ -42,6 +42,6 @@ public void parse_emptyArgs_throwsParseException() {
assertParseFailure(
parser,
"James /to /in Code",
"Please enter the task, project and member fields");
"Please enter the task, project and member fields.");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ public void parse_emptyArgs_throwsParseException() {
assertParseFailure(
parser,
" /to Code",
"Please enter valid names");
"Please enter valid names.");

assertParseFailure(
parser,
"James /to ",
"Please enter the project and team fields");
"Please enter the project and team fields.");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void parse_missingFields_failure() {

// missing task name
assertParseFailure(parser, "A /of /in proj",
"Please enter both the target task name and the project it belongs to");
"Please enter both the target task name and the project it belongs to.");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ public void parse_missingFields_failure() {

// missing project name
assertParseFailure(parser, "complete /of ",
"Please enter the status and project fields");
"Please enter the status and project fields.");

assertParseFailure(parser, "complete /of task /in ",
expectedMessageTask);

// missing task name
assertParseFailure(parser, "complete /of /in proj",
"Please enter the status, project and task fields");
"Please enter the status, project and task fields.");
}

}

0 comments on commit 0c08837

Please sign in to comment.