Fixed a rename which was done only partially in the MinkDictionary trait.

This commit is contained in:
Roger Llopart Pla
2012-07-24 17:34:25 +02:00
parent da58c1b572
commit 4de12635e2

View File

@@ -320,7 +320,7 @@ trait MinkDictionary
*/ */
public function assertPageMatchesText($pattern) public function assertPageMatchesText($pattern)
{ {
$this->assertSession()->pageTextMatches($this->fixStepArgument($text)); $this->assertSession()->pageTextMatches($this->fixStepArgument($pattern));
} }
/** /**
@@ -330,7 +330,7 @@ trait MinkDictionary
*/ */
public function assertPageNotMatchesText($pattern) public function assertPageNotMatchesText($pattern)
{ {
$this->assertSession()->pageTextNotMatches($this->fixStepArgument($text)); $this->assertSession()->pageTextNotMatches($this->fixStepArgument($pattern));
} }
/** /**