Skip to content

Commit

Permalink
Update Test Class
Browse files Browse the repository at this point in the history
  • Loading branch information
qinxutan committed Apr 10, 2024
1 parent 4816e14 commit 83aa199
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ public void execute_listActualStudentsOfClass_success() throws CommandException
CommandResult commandResult = listCommand.execute(model);

StringBuilder expectedResult = new StringBuilder();
expectedResult.append("Module: CS2101, Tutorial Class: T01\nStudents: Alice, Bob,");
expectedResult.append("Module: CS2101, Tutorial Class: T01\nStudents: Alice (ID: A1234561Z), "
+ "Bob (ID: A1234562Z),");

assertEquals(expectedResult.toString(), commandResult.getFeedbackToUser());
}
Expand Down

0 comments on commit 83aa199

Please sign in to comment.