From c030f338ab37a5ce16de5b31006a278ac3767ca4 Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Tue, 9 Aug 2016 12:24:46 -0700 Subject: autofixing Style/RedundantException cop --- spec/functional/resource/deploy_revision_spec.rb | 2 +- spec/support/platform_helpers.rb | 2 +- spec/unit/data_collector_spec.rb | 2 +- spec/unit/provider/package/rubygems_spec.rb | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'spec') diff --git a/spec/functional/resource/deploy_revision_spec.rb b/spec/functional/resource/deploy_revision_spec.rb index 72eaea3c12..572609d8ff 100644 --- a/spec/functional/resource/deploy_revision_spec.rb +++ b/spec/functional/resource/deploy_revision_spec.rb @@ -840,7 +840,7 @@ describe Chef::Resource::DeployRevision, :unix_only => true, :requires_git => tr end def run_action(action) - raise RuntimeError, "network error" + raise "network error" end end diff --git a/spec/support/platform_helpers.rb b/spec/support/platform_helpers.rb index 9ba56a15e3..4b727a18ca 100644 --- a/spec/support/platform_helpers.rb +++ b/spec/support/platform_helpers.rb @@ -169,7 +169,7 @@ def selinux_enabled? when 0 return true else - raise RuntimeError, "Unknown exit code from command #{selinuxenabled_path}: #{cmd.exitstatus}" + raise "Unknown exit code from command #{selinuxenabled_path}: #{cmd.exitstatus}" end else # We assume selinux is not enabled if selinux utils are not diff --git a/spec/unit/data_collector_spec.rb b/spec/unit/data_collector_spec.rb index 131d6b8df9..764510d0ad 100644 --- a/spec/unit/data_collector_spec.rb +++ b/spec/unit/data_collector_spec.rb @@ -488,7 +488,7 @@ describe Chef::DataCollector::Reporter do context "when an unexpected exception is raised by the block" do it "re-raises the exception" do - expect { reporter.send(:disable_reporter_on_error) { raise RuntimeError, "bummer" } }.to raise_error(RuntimeError) + expect { reporter.send(:disable_reporter_on_error) { raise "bummer" } }.to raise_error(RuntimeError) end end diff --git a/spec/unit/provider/package/rubygems_spec.rb b/spec/unit/provider/package/rubygems_spec.rb index ed109bf20f..b1ebde2b7d 100644 --- a/spec/unit/provider/package/rubygems_spec.rb +++ b/spec/unit/provider/package/rubygems_spec.rb @@ -63,7 +63,7 @@ describe Chef::Provider::Package::Rubygems::CurrentGemEnvironment do begin @gem_env.with_gem_sources("http://gems.example.org") do sources_in_block = Gem.sources - raise RuntimeError, "sources should be reset even in case of an error" + raise "sources should be reset even in case of an error" end rescue RuntimeError end @@ -77,7 +77,7 @@ describe Chef::Provider::Package::Rubygems::CurrentGemEnvironment do begin @gem_env.with_gem_sources(nil) do sources_in_block = Gem.sources - raise RuntimeError, "sources should be reset even in case of an error" + raise "sources should be reset even in case of an error" end rescue RuntimeError end -- cgit v1.2.1