From 1756ec2065d5219659b585f3fe3ce666861acd3a Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Sun, 1 Sep 2019 08:56:00 +0900 Subject: [PATCH] Ignore the all of warnings with inline_spec.rb of bundler examples. --- spec/bundler/runtime/inline_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/bundler/runtime/inline_spec.rb b/spec/bundler/runtime/inline_spec.rb index 123d0e07f8..b613317b08 100644 --- a/spec/bundler/runtime/inline_spec.rb +++ b/spec/bundler/runtime/inline_spec.rb @@ -90,7 +90,7 @@ RSpec.describe "bundler/inline#gemfile" do expect(out).to include("Installing activesupport") err.gsub! %r{(.*lib/sinatra/base\.rb:\d+: warning: constant ::Fixnum is deprecated$)}, "" err_lines = err.split("\n") - err_lines.reject!{|line| line =~ /\.rb:\d+: warning: The last/} + err_lines.reject!{|line| line =~ /\.rb:\d+: warning: /} expect(err_lines).to be_empty expect(exitstatus).to be_zero if exitstatus end