summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-04-05 17:10:56 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-04-08 13:04:27 +0200
commit68c1d0bc572dec1c275e0b7d02f3a902bcb1210f (patch)
tree545f85a5022dc73174db522fdcf5d8769b0fd390
parent507d56c6ec86566122bd247cd003e48e91da0d4f (diff)
downloadbundler-68c1d0bc572dec1c275e0b7d02f3a902bcb1210f.tar.gz
Fix multiple source deprecation spec on bundler 2
-rw-r--r--spec/other/major_deprecation_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/other/major_deprecation_spec.rb b/spec/other/major_deprecation_spec.rb
index a19a4c47a1..6456e7838e 100644
--- a/spec/other/major_deprecation_spec.rb
+++ b/spec/other/major_deprecation_spec.rb
@@ -357,8 +357,8 @@ RSpec.describe "major deprecations" do
expect(deprecations).to be_empty
end
- xit "shows a deprecation", :bundler => "2" do
- expect(deprecations).to include("Your Gemfile contains multiple primary sources.")
+ it "shows a deprecation", :bundler => "2" do
+ expect(deprecations).to include(a_string_containing("Your Gemfile contains multiple primary sources."))
end
end