kwin commented on code in PR #1196:
URL: https://github.com/apache/jackrabbit-oak/pull/1196#discussion_r1386863301
##########
oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/NamePathTest.java:
##########
@@ -212,6 +218,47 @@ public void testSpaceInNames() throws RepositoryException {
session.getNode(n.getPath());
}
+ @Test
+ @Ignore("OAK-10544")
+ public void testPrefixRemapping() throws NamespaceException,
RepositoryException {
+ Random r = new Random();
+ int i1 = r.nextInt();
+ int i2 = r.nextInt();
+ String prefix = "nstest" + i1;
Review Comment:
can we make the prefix really hardcoded here? Adding the random string here
just complicates the error output.
##########
oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/NamePathTest.java:
##########
@@ -212,6 +218,47 @@ public void testSpaceInNames() throws RepositoryException {
session.getNode(n.getPath());
}
+ @Test
+ @Ignore("OAK-10544")
+ public void testPrefixRemapping() throws NamespaceException,
RepositoryException {
+ Random r = new Random();
+ int i1 = r.nextInt();
+ int i2 = r.nextInt();
+ String prefix = "nstest" + i1;
Review Comment:
can we make the prefix really hardcoded here? Adding the random number here
just complicates the error output.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]