Skip to content

Commit

Permalink
Merge pull request #69 from lucadegasperi/patch-2
Browse files Browse the repository at this point in the history
Fix test. Followup to PR #66
  • Loading branch information
edamov authored Aug 7, 2019
2 parents 34b7277 + 504ea92 commit 4e091be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function testGetHeaders()
$request = new Request($this->createNotification(), $production = false);
$request->addHeader('Connection', 'keep-alive');

$this->assertEquals(['Connection' => 'keep-alive'], $request->getHeaders());
$this->assertEquals(['Connection' => 'keep-alive', 'apns-push-type' => 'alert'], $request->getHeaders());
}

public function testGetOptions()
Expand Down

0 comments on commit 4e091be

Please sign in to comment.