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 4e7bcf0 commit 9edb585Copy full SHA for 9edb585
src/PHPCR/Shell/Test/ContextBase.php
@@ -209,7 +209,7 @@ public function iShouldSeeATableContainingTheFollowingRows(TableNode $table)
209
public function iShouldSeeTheFollowing(PyStringNode $string)
210
{
211
$output = $this->getOutput();
212
- Assert::assertContains($string->getRaw(), $output);
+ Assert::assertStringContainsString($string->getRaw(), $output);
213
}
214
215
/**
@@ -305,7 +305,7 @@ public function theFileExists($arg1)
305
public function theOutputShouldContain(PyStringNode $string)
306
307
foreach ($string->getStrings() as $line) {
308
- Assert::assertContains($line, $this->getOutput());
+ Assert::assertStringContainsString($line, $this->getOutput());
309
310
311
0 commit comments