Skip to content

Commit

Permalink
Fixes after adding UBI Docker support
Browse files Browse the repository at this point in the history
The CertGenCliTests needed an update to ignore the UBI Docker
distribution as well as the regular Docker distribution.
  • Loading branch information
pugnascotia committed Aug 18, 2020
1 parent 08b0e78 commit e2e3fb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class CertGenCliTests extends PackagingTestCase {
@Before
public void filterDistros() {
assumeTrue("only default distro", distribution.flavor == Distribution.Flavor.DEFAULT);
assumeTrue("no docker", distribution.packaging != Distribution.Packaging.DOCKER);
assumeFalse("no docker", distribution.isDocker());
}

@BeforeClass
Expand Down

0 comments on commit e2e3fb1

Please sign in to comment.