Fix unit test

This commit is contained in:
René Pfeuffer
2018-10-26 16:43:52 +02:00
parent a285ddb253
commit 007baecc86
2 changed files with 5 additions and 3 deletions

View File

@@ -7,8 +7,8 @@ public class InvalidPasswordException extends ExceptionWithContext {
private static final String CODE = "8YR7aawFW1";
public InvalidPasswordException(ContextEntry.ContextBuilder passwordChange) {
super(passwordChange.build(), "The given old password does not match with the stored one.");
public InvalidPasswordException(ContextEntry.ContextBuilder context) {
super(context.build(), "The given old password does not match with the stored one.");
}
@Override