1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix typo s/rause/raise/

This commit is contained in:
Ryuta Kamizono 2017-07-19 00:08:00 +09:00
parent c0d8f58775
commit b623a62c7f

View file

@ -844,7 +844,7 @@ class DirtyTest < ActiveRecord::TestCase
after_save do after_save do
raise "changed? should be false" if changed? raise "changed? should be false" if changed?
raise "has_changes_to_save? should be false" if has_changes_to_save? raise "has_changes_to_save? should be false" if has_changes_to_save?
rause "saved_changes? should be true" unless saved_changes? raise "saved_changes? should be true" unless saved_changes?
end end
end end