Skip to content

Commit c311017

Browse files
committed
[cache] Fix fixture (seems unrelated to the cache change)
1 parent 264f93b commit c311017

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rules-tests/Arguments/Rector/RectorOrder/Fixture/fixture.php.inc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ class SomeTest extends TestCase
2727
{
2828
public function test()
2929
{
30-
$this->assertContains('f', 'foo');
31-
$this->assertContains('f', 'foo');
30+
$this->assertStringContainsString('f', 'foo');
31+
$this->assertStringContainsString('f', 'foo');
3232

33-
$this->assertContains('oauth_body_hash', $headers['Authorization'][0]);
33+
$this->assertStringContainsString('oauth_body_hash', $headers['Authorization'][0]);
3434
}
3535
}
3636

0 commit comments

Comments
 (0)