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 8d672e3 commit 5171604Copy full SHA for 5171604
tests/WebPushTest.php
@@ -37,6 +37,7 @@ public function setUp()
37
);
38
39
$this->webPush = new WebPush($this->keys);
40
+ $this->webPush->setAutomaticPadding(false); // disable automatic padding in tests to speed these up
41
}
42
43
public function testSendNotification()
@@ -63,7 +64,7 @@ public function testSendNotificationWithPayloadWithoutAuthToken()
63
64
{
65
$res = $this->webPush->sendNotification(
66
$this->endpoints['standard'],
- 'test',
67
+ '{message: "Plop", tag: "general"}',
68
$this->keys['standard'],
69
null,
70
true
0 commit comments