Skip to content

Commit

Permalink
fixup! test:(PasswordConfirmationMiddleware): Fix constructor call
Browse files Browse the repository at this point in the history
  • Loading branch information
artonge committed Nov 28, 2024
1 parent a18cafe commit 9cce59e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ protected function setUp(): void {
$this->user = $this->createMock(IUser::class);
$this->timeFactory = $this->createMock(ITimeFactory::class);
$this->tokenProvider = $this->createMock(IProvider::class);
$this->request = $this->createMock(IRequest::class);
$this->userManager = $this->createMock(Manager::class);
$this->controller = new PasswordConfirmationMiddlewareController(
'test',
$this->createMock(IRequest::class)
Expand Down

0 comments on commit 9cce59e

Please sign in to comment.