You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good catch! It's an error in Listing 3.8 in the book. I checked the future references to that class and they're sync'ed with the book, so it only happens here.
Thanks a lot for reporting it! I'll document this in the README as an errata and will mention you there.
Yes!
Actually going through the book i realised the same. When writing the test case to verify ChallengeAttempts we need to create a object of ChallengeAttempt class and while declaring ChallengeAttempt the userId variable is of Long data type which should be changed to User class data type.
chapter03/multiplication/src/main/java/microservices/book/multiplication/challenge/ChallengeAttempt.java
Line 15 in ecf489e
chapter 3 in the book mention
Long userId
and code here is using
User user
The text was updated successfully, but these errors were encountered: