Skip to content

Commit

Permalink
Update MultiKeyTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security authored Jan 24, 2025
1 parent 95a8e3c commit af4247a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MultiKeyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected function doReceivingTest(ProtocolInterface $v): void
list($sk, $keyring) = $this->getReceivingKeyring($v);
// Let's make sure we're not in a weird state
if ($v::header() === Version4::header()) {
$this->assertSame(SODIUM_CRYPTO_SIGN_SECRETKEYBYTES, $sk->raw(), 'Incorrect secret key size');
$this->assertSame(SODIUM_CRYPTO_SIGN_SECRETKEYBYTES, strlen($sk->raw()), 'Incorrect secret key size');
}

// These need to pass the type checks
Expand Down

0 comments on commit af4247a

Please sign in to comment.