Correct capitalization of microsecond

This commit is contained in:
Ben Ramsey
2020-03-04 16:51:46 -06:00
parent a21eb6c3ca
commit b3c26661ca
18 changed files with 83 additions and 83 deletions
+2 -2
View File
@@ -532,8 +532,8 @@ class ExpectedBehaviorTest extends TestCase
$timeConverter = \Mockery::mock('Ramsey\Uuid\Converter\TimeConverterInterface');
$timeConverter
->shouldReceive('calculateTime')
->andReturnUsing(function ($seconds, $microSeconds) {
return new Hexadecimal('abcd' . dechex($microSeconds) . dechex($seconds));
->andReturnUsing(function ($seconds, $microseconds) {
return new Hexadecimal('abcd' . dechex($microseconds) . dechex($seconds));
});
$timeProvider = \Mockery::mock('Ramsey\Uuid\Provider\TimeProviderInterface', [