summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-09-10 09:07:19 -0700
committerSamuel Giddins <segiddins@segiddins.me>2017-09-10 09:07:19 -0700
commite05c2a5e24ce317b86852378172d5dcb7971edb5 (patch)
tree54ef3c01e31547c73ca21d4b3ddaa06f3c978996
parent12d5fb573384fde3c935f0c5c4f9217a5463004c (diff)
downloadbundler-e05c2a5e24ce317b86852378172d5dcb7971edb5.tar.gz
Update regex path spec to pass an absolute path
-rw-r--r--spec/install/path_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/install/path_spec.rb b/spec/install/path_spec.rb
index 95fa0fbf50..467e95ec57 100644
--- a/spec/install/path_spec.rb
+++ b/spec/install/path_spec.rb
@@ -23,7 +23,7 @@ RSpec.describe "bundle install" do
dir.mkpath
Dir.chdir(dir) do
- bundle! :install, forgotten_command_line_options(:path => "vendor/bundle")
+ bundle! :install, forgotten_command_line_options(:path => dir.join("vendor/bundle"))
expect(out).to include("installed into `./vendor/bundle`")
end