aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/state_machine/event_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/test/state_machine/event_test.rb')
-rw-r--r--activemodel/test/state_machine/event_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/test/state_machine/event_test.rb b/activemodel/test/state_machine/event_test.rb
index 8fb7e82ec2..64dc8c4875 100644
--- a/activemodel/test/state_machine/event_test.rb
+++ b/activemodel/test/state_machine/event_test.rb
@@ -31,7 +31,7 @@ class EventBeingFiredTest < ActiveModel::TestCase
test 'should raise an AASM::InvalidTransition error if the transitions are empty' do
event = ActiveModel::StateMachine::Event.new(nil, :event)
- assert_raises ActiveModel::StateMachine::InvalidTransition do
+ assert_raise ActiveModel::StateMachine::InvalidTransition do
event.fire(nil)
end
end