Skip to content

Commit 576b55e

Browse files
committed
Fix maxOSX error and replace it with macOSX.
1 parent ad57183 commit 576b55e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name" : "gomoob/php-pushwoosh",
33
"description" : "A PHP Library to easily work with the Pushwoosh REST Web Services.",
4-
"version" : "1.1.0",
4+
"version" : "1.1.1",
55
"license" : "MIT",
66
"type" : "library",
77
"keywords" : [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gomoob-php-pushwoosh",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"license": "MIT",
55
"repository" : {
66
"type" : "git",

src/test/php/Gomoob/Pushwoosh/Model/Notification/NotificationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ public function testToJSON()
374374
Platform::android(),
375375
Platform::nokia(),
376376
Platform::windowsPhone7(),
377-
Platform::maxOSX(),
377+
Platform::macOSX(),
378378
Platform::windows8(),
379379
Platform::amazon(),
380380
Platform::safari()

src/test/php/Gomoob/Pushwoosh/Model/Notification/PlatformTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function testIOS()
5757
*/
5858
public function testMacOSX()
5959
{
60-
$this->assertEquals(7, Platform::maxOSX()->getValue());
60+
$this->assertEquals(7, Platform::macOSX()->getValue());
6161

6262
}
6363

0 commit comments

Comments
 (0)