summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-04-30 00:43:28 -0700
committerAndre Arko <andre@arko.net>2015-04-30 00:43:28 -0700
commit67620e0a5910cb31bb0f0569ea325598cda93057 (patch)
tree06383545cb7afb5a1cb1fc5dbf477a92edafe286
parent9ae8bbce342489d3ec217a335f6f24c75144073f (diff)
parentdf9d01fd23ec12c8718abef3e65e447724383105 (diff)
downloadbundler-67620e0a5910cb31bb0f0569ea325598cda93057.tar.gz
Merge pull request #3584 from hiukkanen/lint-fix
Use include expectation instead of unneeded regular expression
-rw-r--r--spec/install/force_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/install/force_spec.rb b/spec/install/force_spec.rb
index 46b75cf4cc..269390994a 100644
--- a/spec/install/force_spec.rb
+++ b/spec/install/force_spec.rb
@@ -13,7 +13,7 @@ describe "bundle install" do
it "re-installs installed gems" do
bundle "install --force"
- expect(out).to match /Installing rack 1\.0\.0/
+ expect(out).to include "Installing rack 1.0.0"
should_be_installed "rack 1.0.0"
end
end