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 c41d985 commit 60f0fe9Copy full SHA for 60f0fe9
tests/PHPCR/Tests/Util/NodeHelperTest.php
@@ -67,7 +67,7 @@ public function testGenerateAutoNodeName($hint, $expect)
67
{
68
$result = NodeHelper::generateAutoNodeName($this->usedNames, $this->namespaces, 'a', $hint);
69
if (true === $expect) {
70
- $this->assertFalse(strpos($result, ':'));
+ $this->assertNotContains(':', $result);
71
} else {
72
$this->assertEquals($expect, substr($result, 0, strlen($expect)));
73
}
0 commit comments