// assert content at new location
String content = getContent(importedNodeUrl2 + ".3.json", CONTENT_TYPE_JSON);
JSONObject jsonObj = new JSONObject(content);
assertNotNull(jsonObj);
assertNull(jsonObj.optString("propTest", null)); //test property should be gone.
//assert the imported content is there.
String expectedJsonContent = getStreamAsString(getClass().getResourceAsStream("/integration-test/servlets/post/importresults.json"));
assertExpectedJSON(new JSONObject(expectedJsonContent), jsonObj);
}