added missing last argument (fixes #7)

This commit is contained in:
everzet
2012-06-05 13:48:51 +02:00
parent f4b9700355
commit 5ff38df4b9
2 changed files with 2 additions and 2 deletions

View File

@@ -373,7 +373,7 @@ class MinkContext extends RawMinkContext implements TranslatedContextInterface
*/
public function assertNumElements($num, $element)
{
$this->assertSession()->elementsCount('css', $element);
$this->assertSession()->elementsCount('css', $element, intval($num));
}
/**