We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ef74d5 commit efa48abCopy full SHA for efa48ab
tests/10_Writing/CombinedManipulationsTest.php
@@ -611,15 +611,15 @@ public function testRemoveOtherSessionRefreshKeepChanges()
611
try {
612
$childprop->getValue();
613
$this->fail('Should not be possible to get the value of a deleted property');
614
- } catch(\PHPCR\RepositoryException $e) {
+ } catch(\PHPCR\InvalidItemStateException $e) {
615
//expected
616
}
617
618
$this->assertTrue($session->hasPendingChanges());
619
620
$child->getPath();
621
$this->fail('getting the path of deleted child should throw exception');
622
623
// expected
624
625
$this->assertFalse($node->hasProperty('prop'));
0 commit comments