Remove unnecessary system.out from IT

This commit is contained in:
Tim Donohue
2022-12-19 10:09:55 -06:00
committed by GitHub
parent 44e99772e1
commit 014e671fd6

View File

@@ -877,7 +877,6 @@ public class VersionRestRepositoryIT extends AbstractControllerIntegrationTest {
.build();
item.setSubmitter(eperson);
System.out.println(item.getSubmitter().getEmail().toString());
context.restoreAuthSystemState();
@@ -895,7 +894,6 @@ public class VersionRestRepositoryIT extends AbstractControllerIntegrationTest {
hasJsonPath("$.type", is("version"))
)))
.andDo(result -> idRef.set(read(result.getResponse().getContentAsString(), "$.id")));
System.out.println("version 2: " + item.getSubmitter().getEmail().toString());
} finally {
VersionBuilder.delete(idRef.get());
}