From 0c0883715c05f54e4e214acf4081fae0dbd62141 Mon Sep 17 00:00:00 2001 From: modembcc Date: Mon, 15 Apr 2024 16:08:11 +0800 Subject: [PATCH] Fix failed build --- .../address/logic/parser/AssignPersonCommandParserTest.java | 4 ++-- .../address/logic/parser/AssignTeamCommandParserTest.java | 4 ++-- .../seedu/address/logic/parser/RenameCommandParserTest.java | 2 +- .../address/logic/parser/SetStatusCommandParserTest.java | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/test/java/seedu/address/logic/parser/AssignPersonCommandParserTest.java b/src/test/java/seedu/address/logic/parser/AssignPersonCommandParserTest.java index 1bd85ecd02b..380ca59e2a9 100644 --- a/src/test/java/seedu/address/logic/parser/AssignPersonCommandParserTest.java +++ b/src/test/java/seedu/address/logic/parser/AssignPersonCommandParserTest.java @@ -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, @@ -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."); } } diff --git a/src/test/java/seedu/address/logic/parser/AssignTeamCommandParserTest.java b/src/test/java/seedu/address/logic/parser/AssignTeamCommandParserTest.java index 0d007d13b19..488a714edbe 100644 --- a/src/test/java/seedu/address/logic/parser/AssignTeamCommandParserTest.java +++ b/src/test/java/seedu/address/logic/parser/AssignTeamCommandParserTest.java @@ -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."); } } diff --git a/src/test/java/seedu/address/logic/parser/RenameCommandParserTest.java b/src/test/java/seedu/address/logic/parser/RenameCommandParserTest.java index 563274def5b..ff7534cf395 100644 --- a/src/test/java/seedu/address/logic/parser/RenameCommandParserTest.java +++ b/src/test/java/seedu/address/logic/parser/RenameCommandParserTest.java @@ -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."); } } diff --git a/src/test/java/seedu/address/logic/parser/SetStatusCommandParserTest.java b/src/test/java/seedu/address/logic/parser/SetStatusCommandParserTest.java index ac3d88ea322..27b0b9a01c7 100644 --- a/src/test/java/seedu/address/logic/parser/SetStatusCommandParserTest.java +++ b/src/test/java/seedu/address/logic/parser/SetStatusCommandParserTest.java @@ -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."); } }