@@ -443,7 +443,7 @@ for (const {
443443 display_name : `${ osDisplayName } Node Latest` ,
444444 run_on,
445445 expansions : { NODE_LTS_VERSION : 'latest' } ,
446- tasks : tasks . map ( ( { name } ) => name ) ,
446+ tasks : tasks . map ( ( { name } ) => name )
447447 } ;
448448 if ( clientEncryption ) {
449449 buildVariantData . expansions . CLIENT_ENCRYPTION = true ;
@@ -728,26 +728,24 @@ const coverageTask = {
728728SINGLETON_TASKS . push ( coverageTask ) ;
729729SINGLETON_TASKS . push ( ...customDependencyTests ) ;
730730
731- SINGLETON_TASKS . push (
732- {
733- name : `test-alpine-fle` ,
734- tags : [ 'alpine-fle' ] ,
735- commands : [
736- updateExpansions ( {
737- NODE_VERSION : '16.20.1' ,
738- VERSION : 'latest' ,
739- TOPOLOGY : 'replica_set' ,
740- CLIENT_ENCRYPTION : true ,
741- TEST_CSFLE : true ,
742- MONGODB_BINARIES : '${PROJECT_DIRECTORY}/mongodb/bin' ,
743- } ) ,
744- { func : 'install dependencies' } ,
745- { func : 'bootstrap mongo-orchestration' } ,
746- { func : 'assume secrets manager rule' } ,
747- { func : 'build and test alpine FLE' }
748- ]
749- }
750- )
731+ SINGLETON_TASKS . push ( {
732+ name : `test-alpine-fle` ,
733+ tags : [ 'alpine-fle' ] ,
734+ commands : [
735+ updateExpansions ( {
736+ NODE_VERSION : '16.20.1' ,
737+ VERSION : 'latest' ,
738+ TOPOLOGY : 'replica_set' ,
739+ CLIENT_ENCRYPTION : true ,
740+ TEST_CSFLE : true ,
741+ MONGODB_BINARIES : '${PROJECT_DIRECTORY}/mongodb/bin'
742+ } ) ,
743+ { func : 'install dependencies' } ,
744+ { func : 'bootstrap mongo-orchestration' } ,
745+ { func : 'assume secrets manager rule' } ,
746+ { func : 'build and test alpine FLE' }
747+ ]
748+ } ) ;
751749
752750function addPerformanceTasks ( ) {
753751 const makePerfTask = ( name , MONGODB_CLIENT_OPTIONS ) => ( {
0 commit comments