summaryrefslogtreecommitdiff
path: root/spec/bundler/update/redownload_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/update/redownload_spec.rb')
-rw-r--r--spec/bundler/update/redownload_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/bundler/update/redownload_spec.rb b/spec/bundler/update/redownload_spec.rb
index b34a02c78c..147be823f5 100644
--- a/spec/bundler/update/redownload_spec.rb
+++ b/spec/bundler/update/redownload_spec.rb
@@ -10,24 +10,24 @@ RSpec.describe "bundle update" do
describe "with --force" do
it "shows a deprecation when single flag passed", :bundler => 2 do
- bundle! "update rack --force"
+ bundle "update rack --force"
expect(err).to include "[DEPRECATED] The `--force` option has been renamed to `--redownload`"
end
it "shows a deprecation when multiple flags passed", :bundler => 2 do
- bundle! "update rack --no-color --force"
+ bundle "update rack --no-color --force"
expect(err).to include "[DEPRECATED] The `--force` option has been renamed to `--redownload`"
end
end
describe "with --redownload" do
it "does not show a deprecation when single flag passed" do
- bundle! "update rack --redownload"
+ bundle "update rack --redownload"
expect(err).not_to include "[DEPRECATED] The `--force` option has been renamed to `--redownload`"
end
it "does not show a deprecation when single multiple flags passed" do
- bundle! "update rack --no-color --redownload"
+ bundle "update rack --no-color --redownload"
expect(err).not_to include "[DEPRECATED] The `--force` option has been renamed to `--redownload`"
end
end