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
@@ -25,8 +25,8 @@ class PeclUuidTimeGeneratorTest extends PeclUuidTestCase
$generator = new PeclUuidTimeGenerator;
$generator->generate();
$create->verifyInvoked(UUID_TYPE_TIME);
$parse->verifyInvoked($this->uuidString);
$create->verifyInvoked([UUID_TYPE_TIME]);
$parse->verifyInvoked([$this->uuidString]);
}
/**