From 84b5b9212c49b68cda60222fb68d36f4209fab5e Mon Sep 17 00:00:00 2001 From: Phillip Verheyden Date: Wed, 9 Aug 2023 00:26:00 -0500 Subject: [PATCH] Move wayward comment --- .../python/file_parser/pyproject_files_parser_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/spec/dependabot/python/file_parser/pyproject_files_parser_spec.rb b/python/spec/dependabot/python/file_parser/pyproject_files_parser_spec.rb index 80a596c811f4..8aa5af34a572 100644 --- a/python/spec/dependabot/python/file_parser/pyproject_files_parser_spec.rb +++ b/python/spec/dependabot/python/file_parser/pyproject_files_parser_spec.rb @@ -136,8 +136,6 @@ subject(:dep) { dependencies.find { |d| d.name == "atomicwrites" } } its(:subdependency_metadata) do - # This is how Poetry treats transitive dev dependencies, see discussion at https://github.com/python-poetry/poetry/pull/7637#issuecomment-1494272266 - # and https://github.com/dependabot/dependabot-core/pull/7418#issuecomment-1644012926 is_expected.to eq([{ production: false }]) end end @@ -231,6 +229,8 @@ end context "with Poetry 1.5 locked group dependencies" do + # This is how Poetry treats transitive dev dependencies, see discussion at https://github.com/python-poetry/poetry/pull/7637#issuecomment-1494272266 + # and https://github.com/dependabot/dependabot-core/pull/7418#issuecomment-1644012926 let(:pyproject_fixture_name) { "poetry_group_dependencies.toml" } let(:pyproject_lock_fixture_name) { "poetry_group_dependencies.lock" }