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 91779d9 commit f1d7bbfCopy full SHA for f1d7bbf
tests/Polyfill/TestCaseCompatible.php
@@ -7,12 +7,12 @@ trait TestCaseCompatible
7
{
8
public function assertStringContainsString($needle, $haystack, $message = '')
9
10
- $this->assertStringContainsString($needle, $haystack, $message);
+ $this->assertContains($needle, $haystack, $message);
11
}
12
13
public function assertMatchesRegularExpression($pattern, $string, $message = '')
14
15
- $this->assertMatchesRegularExpression($pattern, $string, $message);
+ $this->assertRegExp($pattern, $string, $message);
16
17
18
} else {
0 commit comments