Skip to content

Commit

Permalink
Bugfix: wrong parameter names in assertNotSameSize()
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaswolf committed Sep 4, 2011
1 parent 4596388 commit fe44b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PHPUnit/Framework/Assert.php
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ public function assertSameSize($expected, $actual, $message = '')
* @param mixed $actual
* @param string $message
*/
public function assertNotSameSize($expectedCount, $haystack, $message = '')
public function assertNotSameSize($expected, $actual, $message = '')
{
if (!$expected instanceof Countable &&
!$expected instanceof Iterator &&
Expand Down

0 comments on commit fe44b34

Please sign in to comment.