Skip to content

Commit

Permalink
fix remaining specs
Browse files Browse the repository at this point in the history
  • Loading branch information
kbukum1 committed Jan 2, 2025
1 parent 0e20d75 commit bf2c7ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions common/spec/dependabot/notices_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def support_later_versions?
StubVersionManager.new(
name: "bundler",
detected_version: Dependabot::Version.new("1"),
raw_version: Dependabot::Version.new("1.0.0"),
raw_version: Dependabot::Version.new("1"),
deprecated_versions: [Dependabot::Version.new("1")],
supported_versions: [Dependabot::Version.new("2"), Dependabot::Version.new("3")]
)
Expand Down Expand Up @@ -157,7 +157,8 @@ def support_later_versions?
let(:language_manager) do
StubVersionManager.new(
name: "python",
version: Dependabot::Version.new("3.8"),
detected_version: Dependabot::Version.new("3.8"),
raw_version: Dependabot::Version.new("3.8"),
deprecated_versions: [Dependabot::Version.new("3.8")],
supported_versions: [Dependabot::Version.new("3.9")]
)
Expand Down

0 comments on commit bf2c7ad

Please sign in to comment.