Skip to content

Commit a370008

Browse files
committed
Disable thirdPartyAudit tests when running in a FIPS JVM (#49115)
This fixes a regression introduced in #42042. The logic here was mistakenly inverted such that we only run these tests in a FIPS JVM which is the opposite of what we intend.
1 parent 6f14a63 commit a370008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distribution/tools/plugin-cli/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ test {
4545
thirdPartyAudit.onlyIf {
4646
// FIPS JVM includes manny classes from bouncycastle which count as jar hell for the third party audit,
4747
// rather than provide a long list of exclusions, disable the check on FIPS.
48-
BuildParams.inFipsJvm
48+
BuildParams.inFipsJvm == false
4949
}
5050

5151
/*

0 commit comments

Comments
 (0)