Skip to content

Commit

Permalink
CADC-12859 cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jburke-cadc committed Feb 2, 2024
1 parent 6be2ca2 commit 243fb97
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -613,11 +613,13 @@ private void doTest(List<URI> targets, List<String> expected, String contentType
File pkg = downloadPackage(targets, contentType, authSubject);
Assert.assertNotNull(pkg);
log.debug("archive file: " + pkg.getAbsolutePath());
System.out.println("archive file: " + pkg.getAbsolutePath());

// extract the package
File extracted = extractPackage(pkg, contentType);
Assert.assertNotNull(extracted);
log.debug("extracted file: " + extracted.getAbsolutePath());
System.out.println("extracted file: " + extracted.getAbsolutePath());

// verify package files
verifyPackage(expected, extracted);
Expand Down

0 comments on commit 243fb97

Please sign in to comment.