@@ -451,7 +451,7 @@ test.serial(
451451 async ( t ) => {
452452 const loggedMessages : LoggedMessage [ ] = [ ] ;
453453 const logger = getRecordingLogger ( loggedMessages ) ;
454- const features = createFeatures ( [ Feature . AllowToolcacheInput ] ) ;
454+ const features = createFeatures ( [ ] ) ;
455455
456456 const latestToolcacheVersion = "3.2.1" ;
457457 const latestVersionPath = "/path/to/latest" ;
@@ -580,7 +580,7 @@ const toolcacheInputFallbackMacro = makeMacro({
580580
581581toolcacheInputFallbackMacro . serial (
582582 "the toolcache doesn't have a CodeQL CLI when tools == toolcache" ,
583- [ Feature . AllowToolcacheInput ] ,
583+ [ ] ,
584584 { GITHUB_EVENT_NAME : "dynamic" } ,
585585 [ ] ,
586586 [
@@ -591,22 +591,14 @@ toolcacheInputFallbackMacro.serial(
591591
592592toolcacheInputFallbackMacro . serial (
593593 "the workflow trigger is not `dynamic`" ,
594- [ Feature . AllowToolcacheInput ] ,
594+ [ ] ,
595595 { GITHUB_EVENT_NAME : "pull_request" } ,
596596 [ ] ,
597597 [
598598 `Ignoring 'tools: toolcache' because the workflow was not triggered dynamically.` ,
599599 ] ,
600600) ;
601601
602- toolcacheInputFallbackMacro . serial (
603- "the feature flag is not enabled" ,
604- [ ] ,
605- { GITHUB_EVENT_NAME : "dynamic" } ,
606- [ ] ,
607- [ `Ignoring 'tools: toolcache' because the feature is not enabled.` ] ,
608- ) ;
609-
610602test . serial (
611603 'tryGetTagNameFromUrl extracts the right tag name for a repo name containing "codeql-bundle"' ,
612604 ( t ) => {
0 commit comments