From 02fc7f8e4912e0def8e6717c4de38a951bf4b741 Mon Sep 17 00:00:00 2001 From: Helen Campbell Date: Mon, 26 Sep 2016 16:45:23 +0100 Subject: Remove duplicate deprecation warnings --- spec/functions/validate_absolute_path_spec.rb | 3 +-- spec/functions/validate_bool_spec.rb | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'spec') diff --git a/spec/functions/validate_absolute_path_spec.rb b/spec/functions/validate_absolute_path_spec.rb index 75df6bc..bdb55f0 100755 --- a/spec/functions/validate_absolute_path_spec.rb +++ b/spec/functions/validate_absolute_path_spec.rb @@ -7,9 +7,8 @@ describe 'validate_absolute_path' do # Checking for deprecation warning it 'should display a single deprecation' do - # called twice because validate_absolute_path calls is_absolute_path ENV['STDLIB_LOG_DEPRECATIONS'] = "true" - scope.expects(:warning).with(includes('This method is deprecated')).twice + scope.expects(:warning).with(includes('This method is deprecated')) is_expected.to run.with_params('c:/') end diff --git a/spec/functions/validate_bool_spec.rb b/spec/functions/validate_bool_spec.rb index 4bd1453..8b7e438 100755 --- a/spec/functions/validate_bool_spec.rb +++ b/spec/functions/validate_bool_spec.rb @@ -7,9 +7,8 @@ describe 'validate_bool' do # Checking for deprecation warning it 'should display a single deprecation' do - #called twice, because validate_bool calls is_bool ENV['STDLIB_LOG_DEPRECATIONS'] = "true" - scope.expects(:warning).with(includes('This method is deprecated')).twice + scope.expects(:warning).with(includes('This method is deprecated')) is_expected.to run.with_params(true) end -- cgit v1.2.3