Skip to content

Commit 83c1ebf

Browse files
authored
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 33667a2 commit 83c1ebf

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)