Skip to content

Commit

Permalink
Invert exclusion rule.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jul 7, 2019
1 parent ed08c70 commit e0f4322
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class UnixRule implements MethodRule {
private final boolean enabled;

public UnixRule() {
this.enabled = !Platform.isWindows() && !Platform.isWindowsCE() && System.getProperty("java.vm.vendor").contains("OpenJ9");
this.enabled = !Platform.isWindows() && !Platform.isWindowsCE() && !System.getProperty("java.vm.vendor").contains("OpenJ9");
}

public Statement apply(Statement base, FrameworkMethod method, Object target) {
Expand Down

0 comments on commit e0f4322

Please sign in to comment.