Skip to content

Commit

Permalink
Update dep specs
Browse files Browse the repository at this point in the history
  • Loading branch information
hmarr committed Nov 4, 2019
1 parent 0570bef commit a4146af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions dep/spec/dependabot/dep/file_updater/lockfile_updater_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,12 @@

it "updates the lockfile correctly" do
expect(updated_lockfile_content).
to include("3d0f7978add91030e5e8976ff65ccdd828286cba")
to include("4b67af870c6ffd08258ef1202f371aebccaf7b68")
expect(updated_lockfile_content).
to include(
" branch = \"master\"\n"\
" digest = \"1:b6934841145c567ea0d49ca82f041376b8f79c0c032fff5"\
"661cf918a4c399ff0\"\n"\
" digest = \"1:0b406d5b4810e418a37d3c692a99fdbd972f8a0b1eaf69b"\
"3bf43ffa7afa3e99a\"\n"\
" name = \"golang.org/x/text\""
)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
}
end

it { is_expected.to eq("3d0f7978add91030e5e8976ff65ccdd828286cba") }
it { is_expected.to eq("4b67af870c6ffd08258ef1202f371aebccaf7b68") }
end

context "that is unreachable" do
Expand Down
6 changes: 3 additions & 3 deletions dep/spec/dependabot/dep/update_checker_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@

it "updates the commit" do
expect(latest_resolvable_version).
to eq("3d0f7978add91030e5e8976ff65ccdd828286cba")
to eq("4b67af870c6ffd08258ef1202f371aebccaf7b68")
end
end

Expand Down Expand Up @@ -361,7 +361,7 @@
let(:dependency_version) { "1.6.0" }

it "unlocks the manifest and gets the correct version" do
expect(latest_resolvable_version).to eq(Gem::Version.new("1.10.2"))
expect(latest_resolvable_version).to eq(Gem::Version.new("1.10.3"))
end
end
end
Expand Down Expand Up @@ -438,7 +438,7 @@

it "updates the commit" do
expect(checker.latest_resolvable_version_with_no_unlock).
to eq("3d0f7978add91030e5e8976ff65ccdd828286cba")
to eq("4b67af870c6ffd08258ef1202f371aebccaf7b68")
end
end

Expand Down

0 comments on commit a4146af

Please sign in to comment.