Skip to content

Commit

Permalink
FacadeTest fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeygeno committed Aug 8, 2023
1 parent 59a2635 commit dbb1dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/FacadeTest.php
Expand Up @@ -29,7 +29,7 @@ public function test_process_ok()
$rand = $this->getFunctionMock('AlexGeno\PhoneVerification', 'rand');
$rand->expects($this->once())->willReturn($otp);

$this->assertEmpty(PhoneVerification::initiate($to));
$this->assertNotEmpty(PhoneVerification::initiate($to));
$this->assertNotEmpty(PhoneVerification::complete($to, $otp));
}
}

0 comments on commit dbb1dd5

Please sign in to comment.