Skip to content

Commit

Permalink
Fix: Add missing callback parameter in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 13, 2019
1 parent 8d7b5f3 commit acdfadb
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(), $callback);
PHP
,
<<<'PHP'
Expand Down

0 comments on commit acdfadb

Please sign in to comment.