Description
the following should fail:
Node hello = session.getRootNode().addNode("hello"); session.save(); Node illegal = hello.addNode("test "); <-- here session.save(); assertEquals("/hello/test ", illegal.getPath()); <-- and here Node other = session.getNode("/hello/test "); <-- and here assertTrue(other.isSame(illegal)); assertTrue(session.nodeExists("/hello/test ")); <-- and here