summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenzo Manacorda <lorenzo.manacorda@gmail.com>2015-09-16 14:19:52 +0200
committerLorenzo Manacorda <lorenzo.manacorda@gmail.com>2015-09-16 14:19:52 +0200
commit1f236d1a6e638e2b0c3e910568f4dc94acc58b77 (patch)
treeab754460a21d590b49d3ebeee73ea1f38fbd1035
parent5fa47c2aac77a9cb419cff544016eb80e85e38d4 (diff)
downloadbundler-1f236d1a6e638e2b0c3e910568f4dc94acc58b77.tar.gz
make rubocop happy
-rw-r--r--spec/commands/config_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/commands/config_spec.rb b/spec/commands/config_spec.rb
index 011a33599c..a9adde3711 100644
--- a/spec/commands/config_spec.rb
+++ b/spec/commands/config_spec.rb
@@ -308,14 +308,14 @@ E
expect(out).to include("`path.system` is already configured")
- expect(Bundler.settings['path.system']).to be_nil
+ expect(Bundler.settings["path.system"]).to be_nil
end
it "should persist `path`" do
bundle "config path.system true"
bundle "config path #{bundled_app(".bundle")}"
- expect(Bundler.settings[:path]).to eq(bundled_app('.bundle').to_s)
+ expect(Bundler.settings[:path]).to eq(bundled_app(".bundle").to_s)
end
end
@@ -334,7 +334,7 @@ E
bundle "config path #{default_bundle_path}"
bundle "config path.system true"
- expect(Bundler.settings['path.system']).to eq("true")
+ expect(Bundler.settings["path.system"]).to eq("true")
end
end
end