Change NodeProviderInterface::getNode() to return Hexadecimal

This commit is contained in:
Ben Ramsey
2020-02-29 22:35:45 -06:00
parent 4ffd156a84
commit 86c37eff4c
13 changed files with 196 additions and 135 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ class DceSecurityGeneratorTest extends TestCase
]);
$nodeProvider = Mockery::mock(NodeProviderInterface::class, [
'getNode' => $node,
'getNode' => new Hexadecimal($node),
]);
$timeProvider = new FixedTimeProvider(new Time($seconds, $microseconds));