Skip to content

Commit

Permalink
Update unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
iulyanp committed Feb 12, 2018
1 parent f62a3ce commit 49acc99
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"require": {
"php": "^7.0",
"respect/validation": "^1.1",
"symfony/options-resolver": "^3.4"
"symfony/options-resolver": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"symfony/var-dumper": "^3.4"
"symfony/var-dumper": "^3.3"
},
"autoload": {
"psr-4": {
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/FlexValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ public function validateWithSameRuleMultipleTimes()

$rules = [
'username' => [
'rules' => v::alpha('_')->alpha(','),
'rules' => v::allOf(v::alpha('_'), v::alpha(',')),
],
];

Expand Down

0 comments on commit 49acc99

Please sign in to comment.