aboutsummaryrefslogtreecommitdiffstats
path: root/spec/runtime/with_clean_env_spec.rb
diff options
context:
space:
mode:
authorVictor Koronen <koronen@kth.se>2015-08-08 16:56:30 +0200
committerVictor Koronen <koronen@kth.se>2015-08-14 12:29:44 +0200
commit132b95ee70e3e9d3b318429bd53c879a7c503341 (patch)
tree848c67384d490a08aa89e0f9fd696b9d1a345980 /spec/runtime/with_clean_env_spec.rb
parentea73d220a5e012f8ec41fef1770152145114ca5b (diff)
downloadbundler-132b95ee70e3e9d3b318429bd53c879a7c503341.tar.gz
Fix Style/LineEndConcatenation
Diffstat (limited to 'spec/runtime/with_clean_env_spec.rb')
-rw-r--r--spec/runtime/with_clean_env_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/runtime/with_clean_env_spec.rb b/spec/runtime/with_clean_env_spec.rb
index 1c6114c0..13dd629a 100644
--- a/spec/runtime/with_clean_env_spec.rb
+++ b/spec/runtime/with_clean_env_spec.rb
@@ -27,8 +27,8 @@ describe "Bundler.with_env helpers" do
gemfile ""
bundle "install --path vendor/bundle"
- code = "Bundler.with_clean_env do;" +
- " print ENV['GEM_PATH'] != '';" +
+ code = "Bundler.with_clean_env do;" \
+ " print ENV['GEM_PATH'] != '';" \
"end"
result = bundle "exec ruby -e #{code.inspect}"