@Test
public void emptyTrashTaskOnOneRepo() throws Exception {
// deploy
RequestFacade.doPutForText(REPOSITORY_RELATIVE_URL + REPO_TEST_HARNESS_RELEASE_REPO + "/foo.txt",
new StringRepresentation("dummy content"), NexusRequestMatchers.respondsWithStatusCode(201));
RequestFacade.doPutForText(REPOSITORY_RELATIVE_URL + REPO_TEST_HARNESS_SNAPSHOT_REPO + "/foo.txt",
new StringRepresentation("dummy content"), NexusRequestMatchers.respondsWithStatusCode(201));
// delete both
RequestFacade.doDelete(REPOSITORY_RELATIVE_URL + REPO_TEST_HARNESS_RELEASE_REPO + "/foo.txt",
NexusRequestMatchers.respondsWithStatusCode(204));
RequestFacade.doDelete(REPOSITORY_RELATIVE_URL + REPO_TEST_HARNESS_SNAPSHOT_REPO + "/foo.txt",