Skip to content

Commit 7752e9f

Browse files
Lint fixes
1 parent b846671 commit 7752e9f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

npm_and_yarn/spec/dependabot/npm_and_yarn/package_manager_helper_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -522,14 +522,14 @@
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

0 commit comments

Comments
 (0)