File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ namespace :test do
3535 task :unit
3636 RSpec ::Core ::RakeTask . new ( :unit ) do |t |
3737 t . pattern = 'spec/unit/**/*_spec.rb'
38- t . ruby_opts = '-W0'
3938 end
4039
4140 desc 'Run unit and integration tests'
@@ -52,7 +51,6 @@ namespace :test do
5251 desc 'Run Integration tests'
5352 RSpec ::Core ::RakeTask . new ( :integration ) do |t |
5453 t . pattern = 'spec/integration/**/*_spec.rb'
55- t . ruby_opts = '-W0'
5654 end
5755
5856 # This is the task to run the Elasticsearch REST tests which we stopped using for 9.x.
Original file line number Diff line number Diff line change 1717
1818require 'spec_helper'
1919require 'hashie'
20+ require 'hashie/logger'
21+ Hashie . logger = Logger . new ( nil )
2022
2123describe 'Hashie' do
22-
2324 let ( :json ) do
2425 <<-JSON
2526 {
7980 end
8081
8182 let ( :response ) do
82- Hashie ::Mash . new MultiJson . load ( json )
83+ Hashie ::Mash . new ( MultiJson . load ( json ) )
8384 end
8485
8586 it 'wraps the response' do
You can’t perform that action at this time.
0 commit comments