Skip to content

Commit

Permalink
chore: Fix naming cop violation
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraichen committed Aug 23, 2023
1 parent b189b02 commit 2bf1cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
end

module VersionHelper
def version_cmp(v1, comp, v2)
Gem::Version.new(v1).send(comp, Gem::Version.new(v2))
def version_cmp(version1, comp, version2)
Gem::Version.new(version1).send(comp, Gem::Version.new(version2))
end
end

Expand Down

0 comments on commit 2bf1cff

Please sign in to comment.