Fix mock invocation assertions

This commit is contained in:
Ben Ramsey
2019-11-29 17:06:28 -08:00
parent f19b700bd8
commit 657add4b3c
4 changed files with 23 additions and 20 deletions
@@ -26,8 +26,8 @@ class PeclUuidRandomGeneratorTest extends PeclUuidTestCase
$generator = new PeclUuidRandomGenerator();
$generator->generate($this->length);
$create->verifyInvoked(UUID_TYPE_RANDOM);
$parse->verifyInvoked($this->uuidString);
$create->verifyInvoked([UUID_TYPE_RANDOM]);
$parse->verifyInvoked([$this->uuidString]);
}
/**