Skip to content

Commit

Permalink
fix: unit test
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Jan 11, 2025
1 parent a373c03 commit f2a028e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/Service/MailServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public function testFailToSendMailToUnsignedUser():void {
});
$this->appConfig
->method('getValueBool')
->will($this->returnValue('1'));
->will($this->returnValue(true));
$actual = $this->service->notifyUnsignedUser($signRequest, '[email protected]');
$this->assertNull($actual);
}
Expand Down

0 comments on commit f2a028e

Please sign in to comment.