FALCON-2334 Tests in UpdateHelperTest suite fails with ParentNotDirectoryException
The UpdateHelperTest tests fails with the following error :
`Parent path is not a directory: /var/lib/jenkins/workspace/falcon/common/target/falcon/tmp-hadoop-jenkins/jail-fs/testCluster/projects/falcon/staging/falcon/workflows/process/sample`
The errors occurs only when the EntityUtilTest#testIsStagingPath test runs before the tests mentioned above.
The following code in EntityUtilTest#testIsStagingPath creates a file at path - target/falcon/tmp-hadoop-jenkins/jail-fs/testCluster/projects/falcon/staging/falcon/workflows/process/sample which causes the error :
```
if (createPath && !fs.exists(path)) {
fs.create(path);
}
```
The change proposed in this pull request deletes the files created in EntityUtilTest#testIsStagingPath after the test checks are done.
Author: sonia-garudi <sgarudi@us.ibm.com>
Reviewers: @pallavi-rao
Closes #408 from sonia-garudi/FALCON-2334