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 58221aa commit 2b3bdb9Copy full SHA for 2b3bdb9
tests/Versioning/VersionManagerTest.php
@@ -354,11 +354,13 @@ public function testRestoreBaseProperties()
354
355
$node = $this->session->getNode($nodePath);
356
$this->assertContains('mix:created', $node->getPropertyValue('jcr:mixinTypes'));
357
+ $this->assertTrue($node->hasProperty('jcr:created'));
358
359
$this->vm->restore(true, $version);
360
361
362
$this->assertEquals(array('mix:versionable'), $node->getPropertyValue('jcr:mixinTypes'));
363
+ $this->assertFalse($node->hasProperty('jcr:created'));
364
}
365
366
public function testRestoreWithChildren()
0 commit comments