Skip to content

Commit

Permalink
Fix PHPUnit to version 4.8 (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jelte committed Aug 7, 2017
1 parent 4027baf commit eefe735
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 @@ -10,7 +10,7 @@
"php": ">=5.3"
},
"require-dev" : {
"phpunit/phpunit": "@stable",
"phpunit/phpunit": ">=4.8 <5.0",
"guzzle/guzzle": "@stable",
"symfony/class-loader": "@stable"
}
Expand Down
Expand Up @@ -75,7 +75,7 @@ public function provideBadParameters()
{
return array(
array('setPassword', '12'),
array('setUserid', '12'),
array('setUserid', '1'),
array('setAmount', '232'),
array('setAmount', 2.32),
);
Expand Down
Expand Up @@ -64,7 +64,7 @@ public function provideBadParameters()
{
return array(
array('setPassword', '12'),
array('setUserid', '12'),
array('setUserid', '1'),
);
}

Expand Down

0 comments on commit eefe735

Please sign in to comment.