//Thread.sleep(15 * 1000); // 15 secs >> more than it takes for reaper to run :-)
// Stop/remove the deployment
progress = deployMgr.stop(uploadedNames);
progress.addProgressListener(this);
progress.run();
status = progress.getDeploymentStatus();
assertTrue("DeploymentStatus.isCompleted: " + status, status.isCompleted());
assertFalse("DeploymentStatus.isFailed: " + status, status.isFailed());
}
}