Skip to content

Commit

Permalink
Remove debug statement from UserResourceTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-austin authored Jan 13, 2025
1 parent 808e4ce commit f133811
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/java/org/icatproject/topcat/UserResourceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ public void testSetDownloadStatus() throws Exception {
testDownload.setTransport("http");
downloadRepository.save(testDownload);
downloadId = testDownload.getId();
System.out.println("userstatus:" + downloadId);

assertThrows("Cannot modify status of a queued download", ForbiddenException.class, () -> {
userResource.setDownloadStatus(testDownload.getId(), facilityName, sessionId, DownloadStatus.RESTORING.toString());
Expand Down Expand Up @@ -374,4 +373,4 @@ private Download findDownload(List<Download> downloads, Long downloadId) {
return null;
}

}
}

0 comments on commit f133811

Please sign in to comment.