Skip to content

Commit

Permalink
checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yeozongyao committed Mar 19, 2024
1 parent 0c33860 commit 0306eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/seedu/bookbuddy/ParserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void parseInvalidCommand() {
final PrintStream originalOut = System.out;
System.setOut(new PrintStream(outContent));
Parser.parseCommand("invalid", books);
assertEquals("Sorry but that is not a valid command. Please try again\n", outContent.toString());
assertEquals("Sorry but that is not a valid command. Please try again", outContent.toString());
System.setOut(originalOut);
}

Expand Down

0 comments on commit 0306eda

Please sign in to comment.