File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ def out_with_macos_man_workaround
266266RSpec . describe "bundler executable" do
267267 it "shows the bundler version just as the `bundle` executable does" do
268268 bundler "--version"
269- expect ( out ) . to eq ( " #{ Bundler ::VERSION } " )
269+ expect ( out ) . to eq ( Bundler ::VERSION . to_s )
270270
271271 bundle "config simulate_version 5"
272272 bundler "--version"
Original file line number Diff line number Diff line change 1212 context "with -v" do
1313 it "outputs the version and virtual version if set" do
1414 bundle "-v"
15- expect ( out ) . to eq ( " #{ Bundler ::VERSION } " )
15+ expect ( out ) . to eq ( Bundler ::VERSION . to_s )
1616
1717 bundle "config simulate_version 5"
1818 bundle "-v"
2323 context "with --version" do
2424 it "outputs the version and virtual version if set" do
2525 bundle "--version"
26- expect ( out ) . to eq ( " #{ Bundler ::VERSION } " )
26+ expect ( out ) . to eq ( Bundler ::VERSION . to_s )
2727
2828 bundle "config simulate_version 5"
2929 bundle "--version"
You can’t perform that action at this time.
0 commit comments