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 6ec3f62 commit 50c3eb9Copy full SHA for 50c3eb9
Tests/DeprecationErrorHandler/DeprecationTest.php
@@ -46,8 +46,8 @@ public function testLegacyTestMethodIsDetectedAsSuch()
46
public function testItCanBeConvertedToAString()
47
{
48
$deprecation = new Deprecation('💩', $this->debugBacktrace(), __FILE__);
49
- $this->assertContains('💩', $deprecation->toString());
50
- $this->assertContains(__FUNCTION__, $deprecation->toString());
+ $this->assertStringContainsString('💩', $deprecation->toString());
+ $this->assertStringContainsString(__FUNCTION__, $deprecation->toString());
51
}
52
53
public function testItRulesOutFilesOutsideVendorsAsIndirect()
0 commit comments