From a4ed6774daaa42ceca5a6eb94c89537c326577b1 Mon Sep 17 00:00:00 2001 From: Andrew Stangl Date: Tue, 18 Jul 2017 18:12:00 +0200 Subject: [PATCH] explicitly test for false --- spec/defines/sensu_handler_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/defines/sensu_handler_spec.rb b/spec/defines/sensu_handler_spec.rb index b1456eab8b..93da6496f3 100644 --- a/spec/defines/sensu_handler_spec.rb +++ b/spec/defines/sensu_handler_spec.rb @@ -183,7 +183,7 @@ end context 'handle_silenced set to false' do - let(:params) { { :command => 'mycommand.rb', :type => 'pipe' } } + let(:params) { { :command => 'mycommand.rb', :type => 'pipe', :handle_silenced => false } } it { should contain_sensu_handler('myhandler').with_handle_silenced( false ) } end