Skip to content

Commit f1d7bbf

Browse files
committed
wip
1 parent 91779d9 commit f1d7bbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Polyfill/TestCaseCompatible.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ trait TestCaseCompatible
77
{
88
public function assertStringContainsString($needle, $haystack, $message = '')
99
{
10-
$this->assertStringContainsString($needle, $haystack, $message);
10+
$this->assertContains($needle, $haystack, $message);
1111
}
1212

1313
public function assertMatchesRegularExpression($pattern, $string, $message = '')
1414
{
15-
$this->assertMatchesRegularExpression($pattern, $string, $message);
15+
$this->assertRegExp($pattern, $string, $message);
1616
}
1717
}
1818
} else {

0 commit comments

Comments
 (0)