We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2123542 commit 4bdde44Copy full SHA for 4bdde44
src/Codeception/Lib/InnerBrowser.php
@@ -624,12 +624,12 @@ public function dontSeeCurrentUrlEquals($uri)
624
625
public function seeCurrentUrlMatches($uri)
626
{
627
- \PHPUnit\Framework\Assert::assertRegExp($uri, $this->_getCurrentUri());
+ $this->assertRegExp($uri, $this->_getCurrentUri());
628
}
629
630
public function dontSeeCurrentUrlMatches($uri)
631
632
- \PHPUnit\Framework\Assert::assertNotRegExp($uri, $this->_getCurrentUri());
+ $this->assertNotRegExp($uri, $this->_getCurrentUri());
633
634
635
public function grabFromCurrentUrl($uri = null)
0 commit comments