Skip to content

Commit

Permalink
Merge bb21dca into 6c2364f
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcin committed Sep 10, 2019
2 parents 6c2364f + bb21dca commit 19fd1b3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import org.junit.Test;

import java.io.File;
import java.io.FilenameFilter;
import java.net.URI;
import java.net.URL;
import java.util.ArrayList;
Expand Down Expand Up @@ -830,6 +831,9 @@ public void testShrinkWrapPlans() throws Exception {
expectedPlanNames,
planNamesResult.getOrDefault(Collections.emptyList()));
assertTrue("preinstall is file", new File(copyTarget, preInstallFilename).isFile());
File[] otherZips = copyTarget.listFiles((dir, name) -> !preInstallFilename.equals(name) && name.endsWith(".zip"));
assertNotNull("other zips should not be null", otherZips);
assertEquals("other zips should be empty", 0, otherZips.length);
}

@Test
Expand Down

0 comments on commit 19fd1b3

Please sign in to comment.