summaryrefslogtreecommitdiff
path: root/spec/lock/git_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lock/git_spec.rb')
-rw-r--r--spec/lock/git_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lock/git_spec.rb b/spec/lock/git_spec.rb
index 7d023b83d2..23b7f3112c 100644
--- a/spec/lock/git_spec.rb
+++ b/spec/lock/git_spec.rb
@@ -22,14 +22,14 @@ describe "bundle lock with git gems" do
puts "WIN" unless defined?(FOO_PREV_REF)
RUBY
- out.should == "WIN"
+ expect(out).to eq("WIN")
end
it "provides correct #full_gem_path" do
run <<-RUBY
puts Bundler.rubygems.find_name('foo').first.full_gem_path
RUBY
- out.should == bundle("show foo")
+ expect(out).to eq(bundle("show foo"))
end
end