Skip to content

Commit

Permalink
APNS: Reorganize APNS test statics
Browse files Browse the repository at this point in the history
Move out of the "libcapn" folder since the statics don't have
anything to do anymore with libcapn.

Reviewed at https://reviews.lunr.nl/r/948/
  • Loading branch information
pprkut committed Apr 2, 2023
1 parent 0ee9702 commit 46b6d74
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Lunr/Vortex/APNS/Tests/APNSPayloadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ public function setUp(): void
public function payloadProvider(): array
{
$values = [];
$values[] = [ '/Vortex/apns/libcapn/alert.json', [ 'alert' => 'apnsmessage' ] ];
$values[] = [ '/Vortex/apns/libcapn/custom_data.json', [ 'custom_data' => [ 'key1' => 'value1', 'key2' => 'value2' ] ] ];
$values[] = [ '/Vortex/apns/libcapn/badge.json', [ 'badge' => 10 ] ];
$values[] = [ '/Vortex/apns/alert.json', [ 'alert' => 'apnsmessage' ] ];
$values[] = [ '/Vortex/apns/custom_data.json', [ 'custom_data' => [ 'key1' => 'value1', 'key2' => 'value2' ] ] ];
$values[] = [ '/Vortex/apns/badge.json', [ 'badge' => 10 ] ];
$values[] = [
'/Vortex/apns/libcapn/apns.json',
'/Vortex/apns/apns.json',
[
'alert' => 'apnsmessage',
'badge' => 10,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 46b6d74

Please sign in to comment.