Skip to content

Commit

Permalink
Fix: Add missing callback parameter in tests (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and maks-rafalko committed Feb 14, 2019
1 parent 8d7b5f3 commit 2bd8472
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/Mutator/Unwrap/UnwrapArrayDiffUassocTest.php
Expand Up @@ -132,7 +132,7 @@ public function provideMutationCases(): \Generator
<<<'PHP'
<?php
$a = array_diff_uassoc($foo->bar(), $foo->baz());
$a = array_diff_uassoc($foo->bar(), $foo->baz(), $callback);
PHP
,
<<<'PHP'
Expand Down
2 changes: 1 addition & 1 deletion tests/Mutator/Unwrap/UnwrapArrayDiffUkeyTest.php
Expand Up @@ -132,7 +132,7 @@ public function provideMutationCases(): \Generator
<<<'PHP'
<?php
$a = array_diff_ukey($foo->bar(), $foo->baz());
$a = array_diff_ukey($foo->bar(), $foo->baz(), $callback);
PHP
,
<<<'PHP'
Expand Down
2 changes: 1 addition & 1 deletion tests/Mutator/Unwrap/UnwrapArrayUdiffAssocTest.php
Expand Up @@ -132,7 +132,7 @@ public function provideMutationCases(): \Generator
<<<'PHP'
<?php
$a = array_udiff_assoc($foo->bar(), $foo->baz());
$a = array_udiff_assoc($foo->bar(), $foo->baz(), $callback);
PHP
,
<<<'PHP'
Expand Down
2 changes: 1 addition & 1 deletion tests/Mutator/Unwrap/UnwrapArrayUdiffTest.php
Expand Up @@ -132,7 +132,7 @@ public function provideMutationCases(): \Generator
<<<'PHP'
<?php
$a = array_udiff($foo->bar(), $foo->baz());
$a = array_udiff($foo->bar(), $foo->baz(), $callback);
PHP
,
<<<'PHP'
Expand Down
2 changes: 1 addition & 1 deletion tests/Mutator/Unwrap/UnwrapArrayUdiffUassocTest.php
Expand Up @@ -132,7 +132,7 @@ public function provideMutationCases(): \Generator
<<<'PHP'
<?php
$a = array_udiff_uassoc($foo->bar(), $foo->baz());
$a = array_udiff_uassoc($foo->bar(), $foo->baz(), $value_compare_func, $key_compare_func);
PHP
,
<<<'PHP'
Expand Down

0 comments on commit 2bd8472

Please sign in to comment.