Skip to content

Commit

Permalink
Upgrade to PHPUnit 7.
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Jun 22, 2018
1 parent c3d87a8 commit 3b3f438
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -97,7 +97,7 @@
"php-http/guzzle6-adapter": "^1.1",
"php-http/message-factory": "^1.0.2",
"phpstan/phpstan": "^0.10@dev",
"phpunit/phpunit": "^6.1",
"phpunit/phpunit": "^7.0",
"symfony/phpunit-bridge": "^3.3.11"
},
"suggest": {
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.0/phpunit.xsd"
colors="true"
bootstrap="tests/bootstrap.php"
>
Expand Down
2 changes: 1 addition & 1 deletion tests/Command/UserPasswordCommandTest.php
Expand Up @@ -198,7 +198,7 @@ function ($data) {
$this->assertArrayHasKey('password', $data);
$this->assertSame(PASSWORD_DEFAULT, password_get_info($data['password'])['algo']);

return $data;
return true;
}
),
['username' => $username]
Expand Down

0 comments on commit 3b3f438

Please sign in to comment.