Skip to content

Commit

Permalink
chore: fix more checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Nixx162 committed Nov 2, 2023
1 parent 3af6a69 commit b999a1d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public void hashcode() {
public void toStringMethod() {
CommandResult commandResult = new CommandResult("feedback");
String expected = CommandResult.class.getCanonicalName() + "{feedbackToUser="
+ commandResult.getFeedbackToUser() + ", exit=" + commandResult.isExit() + ", listEvent=" + commandResult.isListEvent() + "}";
+ commandResult.getFeedbackToUser() + ", exit=" + commandResult.isExit()
+ ", listEvent=" + commandResult.isListEvent() + "}";
assertEquals(expected, commandResult.toString());
}
}

0 comments on commit b999a1d

Please sign in to comment.