Skip to content

Commit

Permalink
make tests run with latest possible phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
arubacao committed Jul 6, 2017
1 parent a958996 commit 5056644
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"facebook/graph-sdk": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/phpunit": "~4.0|~5.0|~6.0",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "~2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/LaravelFacebookSdkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use Mockery as m;
use SammyK\LaravelFacebookSdk\LaravelFacebookSdk;

class LaravelFacebookSdkTest extends \PHPUnit_Framework_TestCase
class LaravelFacebookSdkTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Illuminate\Config\Repository|\Mockery\MockInterface
Expand Down
2 changes: 1 addition & 1 deletion tests/SyncableGraphNodeTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class MyFillableOnlyFields extends MyUserModel
protected static $graph_node_fillable_fields = ['facebook_id', 'keep_me'];
}

class FacebookableTraitTest extends \PHPUnit_Framework_TestCase
class FacebookableTraitTest extends \PHPUnit\Framework\TestCase
{
public function testFieldToColumnNameReturnsFieldNameWhenNoAliasPresent()
{
Expand Down

0 comments on commit 5056644

Please sign in to comment.