summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoni Lahtinen <joni.lahtinen@gmail.com>2015-04-22 21:40:54 +0300
committerJoni Lahtinen <joni.lahtinen@gmail.com>2015-04-22 21:45:39 +0300
commitdf9d01fd23ec12c8718abef3e65e447724383105 (patch)
treea181b31d8c2a260b8bd5151d27982d86fa0c2dca
parent0ad473a7db2ebfa34b9bb59712f3f735b8737606 (diff)
downloadbundler-df9d01fd23ec12c8718abef3e65e447724383105.tar.gz
Use include expectation instead of unneeded regular expression
Fixes lint warning
-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