src/main/java/org/apache/sling/launchpad/webapp/integrationtest/servlets/post/PostServletImportTest.java [672:689]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        props.put(SlingPostConstants.RP_REDIRECT_TO, SERVLET_CONTEXT + testPath + "/*");
        String importedNodeUrl = testClient.createNode(
                HTTP_BASE_URL + testPath,
                new NameValuePairList(props),
                null,
                true,
                testFile,
                SlingPostConstants.RP_CONTENT_FILE,
                null);

        // assert content at new location
        String content = getContent(importedNodeUrl + ".3.json", CONTENT_TYPE_JSON);

        JsonObject jsonObj = JsonUtil.parseObject(content);
        assertNotNull(jsonObj);

        // assert the imported content is there.
        String expectedJsonContent =
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/launchpad/webapp/integrationtest/servlets/post/PostServletImportTest.java [742:759]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        props.put(SlingPostConstants.RP_REDIRECT_TO, SERVLET_CONTEXT + testPath + "/*");
        String importedNodeUrl = testClient.createNode(
                HTTP_BASE_URL + testPath,
                new NameValuePairList(props),
                null,
                true,
                testFile,
                SlingPostConstants.RP_CONTENT_FILE,
                null);

        // assert content at new location
        String content = getContent(importedNodeUrl + ".3.json", CONTENT_TYPE_JSON);

        JsonObject jsonObj = JsonUtil.parseObject(content);
        assertNotNull(jsonObj);

        // assert the imported content is there.
        String expectedJsonContent =
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



