Skip to content

Commit

Permalink
Fix report command test
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomesjh committed Apr 15, 2024
1 parent 5d7d7f7 commit c903a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/supertracker/command/ReportCommandTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void reportCommand_lowStock_correctlyConstructed() throws TrackerExceptio
Command c = Parser.parseCommand(userInput);
c.execute();

String expected = " There is 1 items low on stocks!" + LINE_SEPARATOR +
String expected = " There is 1 item low on stocks!" + LINE_SEPARATOR +
" 1. Name: orange" + LINE_SEPARATOR +
" Quantity: 10" + LINE_SEPARATOR;
String actual = outContent.toString();
Expand Down

0 comments on commit c903a8f

Please sign in to comment.