From a5db2c52c5394e761e5f17e8c9d3e6576398d355 Mon Sep 17 00:00:00 2001 From: Ryan Schlesinger Date: Wed, 20 May 2015 09:19:32 -0700 Subject: [PATCH] Clearer exception description --- test/fixtures/poro.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/poro.rb b/test/fixtures/poro.rb index 10b4bd57..8fca91d6 100644 --- a/test/fixtures/poro.rb +++ b/test/fixtures/poro.rb @@ -214,6 +214,6 @@ end RaiseErrorSerializer = Class.new(ActiveModel::Serializer) do def json_key - raise StandardError, 'OOPS' + raise StandardError, 'Intentional error for rescue_from test' end end