Skip to content

Commit a6b814c

Browse files
Fix assertStringNotContainsString
1 parent 6c470b3 commit a6b814c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PHPCR/Shell/Test/ContextBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public function iShouldSeeTheFollowing(PyStringNode $string)
218218
public function iShouldNotSeeTheFollowing(PyStringNode $string)
219219
{
220220
$output = $this->getOutput();
221-
Assert::assertNotContains($string->getRaw(), $output);
221+
Assert::assertStringNotContainsString($string->getRaw(), $output);
222222
}
223223

224224
/**

0 commit comments

Comments
 (0)