Skip to content
This repository was archived by the owner on Apr 14, 2021. It is now read-only.

Commit 1a26d67

Browse files
committed
Fixed quoted string with YAML
1 parent 5162511 commit 1a26d67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spec/commands/config_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@
305305
it "doesn't return quotes around values", :ruby => "1.9" do
306306
bundle "config foo '1'"
307307
run "puts Bundler.settings.send(:global_config_file).read"
308-
expect(out).to include('"1"')
308+
expect(out).to include("'1'")
309309
run "puts Bundler.settings[:foo]"
310310
expect(out).to eq("1")
311311
end

0 commit comments

Comments
 (0)