Skip to content

Commit

Permalink
Fix maxOSX error and replace it with macOSX.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaillard committed Nov 17, 2015
1 parent ad57183 commit 576b55e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "gomoob/php-pushwoosh",
"description" : "A PHP Library to easily work with the Pushwoosh REST Web Services.",
"version" : "1.1.0",
"version" : "1.1.1",
"license" : "MIT",
"type" : "library",
"keywords" : [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gomoob-php-pushwoosh",
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT",
"repository" : {
"type" : "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ public function testToJSON()
Platform::android(),
Platform::nokia(),
Platform::windowsPhone7(),
Platform::maxOSX(),
Platform::macOSX(),
Platform::windows8(),
Platform::amazon(),
Platform::safari()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function testIOS()
*/
public function testMacOSX()
{
$this->assertEquals(7, Platform::maxOSX()->getValue());
$this->assertEquals(7, Platform::macOSX()->getValue());

}

Expand Down

0 comments on commit 576b55e

Please sign in to comment.