summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-04-08 16:46:18 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-04-08 16:46:18 +0200
commit94c5808b72890f7b4b2d5254ae0a12461d4fb6aa (patch)
tree44d5f8a813fba43b8f51ef38ccdea60afc57d509
parent83e93785a0e9ecb553b90e383307c9bbeeba268e (diff)
downloadbundler-94c5808b72890f7b4b2d5254ae0a12461d4fb6aa.tar.gz
Remove misleading comment
The specs needs that LOAD_PATH modification as of today to pass.
-rw-r--r--spec/install/gemfile/git_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/install/gemfile/git_spec.rb b/spec/install/gemfile/git_spec.rb
index f017290441..4636c8de08 100644
--- a/spec/install/gemfile/git_spec.rb
+++ b/spec/install/gemfile/git_spec.rb
@@ -725,7 +725,7 @@ RSpec.describe "bundle install with git sources" do
build_lib "bar", :path => lib_path("foo/bar"), :gemspec => false do |s|
s.write lib_path("foo/bar/lib/version.rb"), %(BAR_VERSION = '1.0')
s.write "bar.gemspec", <<-G
- $:.unshift Dir.pwd # For 1.9
+ $:.unshift Dir.pwd
require 'lib/version'
Gem::Specification.new do |s|
s.name = 'bar'