We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108f5cd commit 7475d57Copy full SHA for 7475d57
tests/php/Unit/Helper/ValidateHelperTest.php
@@ -736,18 +736,18 @@ public static function providerValidateIdentifySigners(): array {
736
],
737
'empty data structure' => [
738
[],
739
- true, // should throw
740
- 'No signers'
+ false, // should not throw
+ ''
741
742
'missing users key' => [
743
['someOtherKey' => 'value'],
744
745
746
747
'empty users array' => [
748
['users' => []],
749
750
751
752
'users not array' => [
753
['users' => 'not-an-array'],
0 commit comments