Skip to content

Commit d926aeb

Browse files
committed
fix merge
1 parent adc63d2 commit d926aeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/VAPIDTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function testGetVapidHeaders($audience, $vapid, $expiration, $expectedAut
4646
$headers = VAPID::getVapidHeaders($audience, $vapid['subject'], $vapid['publicKey'], $vapid['privateKey'], $expiration);
4747

4848
$this->assertArrayHasKey('Authorization', $headers);
49-
$this->assertEquals(Utils::safe_strlen($expectedAuthorization), Utils::safe_strlen($headers['Authorization']));
49+
$this->assertEquals(Utils::safeStrlen($expectedAuthorization), Utils::safeStrlen($headers['Authorization']));
5050
$this->assertEquals($this->explodeAuthorization($expectedAuthorization), $this->explodeAuthorization($headers['Authorization']));
5151
$this->assertArrayHasKey('Crypto-Key', $headers);
5252
$this->assertEquals($expectedCryptoKey, $headers['Crypto-Key']);

0 commit comments

Comments
 (0)