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 c3a7761 commit e06e21eCopy full SHA for e06e21e
Tests/Command/LintCommandTest.php
@@ -46,7 +46,7 @@ public function testLintCorrectFiles()
46
$ret = $tester->execute(['filename' => [$filename1, $filename2]], ['verbosity' => OutputInterface::VERBOSITY_VERBOSE, 'decorated' => false]);
47
48
$this->assertEquals(0, $ret, 'Returns 0 in case of success');
49
- $this->assertRegExp('/^\/\/ OK in /', trim($tester->getDisplay()));
+ $this->assertMatchesRegularExpression('/^\/\/ OK in /', trim($tester->getDisplay()));
50
}
51
52
public function testLintIncorrectFile()
0 commit comments