File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
npm_and_yarn/spec/dependabot/npm_and_yarn Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 522522
523523 it "validates that npm version 11 satisfies the constraint" do
524524 requirement = helper . find_engine_constraints_as_requirement ( "npm" )
525- npm_version_11 = Dependabot ::Version . new ( "11.6.2" )
526- expect ( requirement . satisfied_by? ( npm_version_11 ) ) . to be ( true )
525+ npm_version_eleven = Dependabot ::Version . new ( "11.6.2" )
526+ expect ( requirement . satisfied_by? ( npm_version_eleven ) ) . to be ( true )
527527 end
528528
529529 it "validates that npm version 10 does not satisfy the constraint" do
530530 requirement = helper . find_engine_constraints_as_requirement ( "npm" )
531- npm_version_10 = Dependabot ::Version . new ( "10.9.3" )
532- expect ( requirement . satisfied_by? ( npm_version_10 ) ) . to be ( false )
531+ npm_version_ten = Dependabot ::Version . new ( "10.9.3" )
532+ expect ( requirement . satisfied_by? ( npm_version_ten ) ) . to be ( false )
533533 end
534534 end
535535
You can’t perform that action at this time.
0 commit comments