Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sachin-sandhu committed Nov 23, 2024
1 parent 5d62ed8 commit d3c4a81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
end

context "when poetry version is extracted from pyenv is well formed" do
# If this test start failing, you need to adjust the "detect_poetry_version" function
# If this test starts failing, you need to adjust the "detect_poetry_version" function
# to return a valid version in format x.x, x.x.x etc. examples: 3.12.5, 3.12
version = Dependabot::SharedHelpers.run_shell_command("pyenv exec poetry --version")
.split("version ").last&.split(")")&.first
Expand Down
2 changes: 1 addition & 1 deletion python/spec/dependabot/python/pip_package_manager_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
end

context "when pip version is extracted from pyenv is well formed" do
# If this test start failing, you need to adjust the "detect_poetry_version" function
# If this test starts failing, you need to adjust the "detect_pip_version" function
# to return a valid version in format x.x, x.x.x etc. examples: 3.12.5, 3.12
version = Dependabot::SharedHelpers.run_shell_command("pyenv exec pip -V")
.split("from").first&.split("pip")&.last&.strip.to_s
Expand Down

0 comments on commit d3c4a81

Please sign in to comment.