mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
Correct capitalization of microsecond
This commit is contained in:
@@ -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', [
|
||||
|
||||
Reference in New Issue
Block a user