Skip to content

Commit

Permalink
fix: debug failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaars committed Mar 27, 2024
1 parent f7d910a commit c84f318
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ protected AttackResult trackProgress(AttackResult attackResult) {
if (userTracker == null) {
userTracker = new UserTracker(webSession.getUserName());
}
System.out.println(
"Tracking progress: "
+ attackResult.assignmentSolved()
+ " "
+ attackResult.getAssignment());
if (attackResult.assignmentSolved()) {
userTracker.assignmentSolved(webSession.getCurrentLesson(), attackResult.getAssignment());
} else {
Expand Down

0 comments on commit c84f318

Please sign in to comment.