Skip to content

Commit 8e97bf9

Browse files
authored
Fix typo in unitTest task (#36930)
Fix the typo introduced in #36311 causing CI failures with the FipsJvm.
1 parent cfea2fd commit 8e97bf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/plugin/security/cli/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ dependencyLicenses {
2323
}
2424

2525
if (project.inFipsJvm) {
26-
tesunitTestt.enabled = false
26+
unitTest.enabled = false
2727
// Forbiden APIs non-portable checks fail because bouncy castle classes being used from the FIPS JDK since those are
2828
// not part of the Java specification - all of this is as designed, so we have to relax this check for FIPS.
2929
tasks.withType(CheckForbiddenApis) {
3030
bundledSignatures -= "jdk-non-portable"
3131
}
32-
// FIPS JVM includes manny classes from bouncycastle which count as jar hell for the third party audit,
32+
// FIPS JVM includes many classes from bouncycastle which count as jar hell for the third party audit,
3333
// rather than provide a long list of exclusions, disable the check on FIPS.
3434
thirdPartyAudit.enabled = false
3535
}

0 commit comments

Comments
 (0)