From 3846c3d6063abc149d344660e936c96358b54dd2 Mon Sep 17 00:00:00 2001 From: liankokhai Date: Thu, 23 Feb 2023 00:12:36 +0800 Subject: [PATCH] update test --- src/test/java/nemo/ui/ParserTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/nemo/ui/ParserTest.java b/src/test/java/nemo/ui/ParserTest.java index de75a33915..01c28efe15 100644 --- a/src/test/java/nemo/ui/ParserTest.java +++ b/src/test/java/nemo/ui/ParserTest.java @@ -20,7 +20,7 @@ void setUp() { @Test public void parse_emptyInput_exceptionThrown() { Throwable exception = assertThrows(NemoException.class, () -> parser.parse("")); - assertEquals("Invalid command", exception.getMessage()); + assertEquals("I'm unable to understand your command :(", exception.getMessage()); } @Test