1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Remove not used variable, fix indent

This commit is contained in:
Carlos Antonio da Silva 2012-05-15 17:14:05 -03:00
parent ab48435211
commit 96e0dcf5d5

View file

@ -153,7 +153,7 @@ class CheckFieldsTest < ActiveSupport::TestCase
devise :database_authenticatable
end
exception = assert_raise_with_message Devise::Models::MissingAttribute, "The following attribute(s) is (are) missing on your model: encrypted_password, email" do
assert_raise_with_message Devise::Models::MissingAttribute, "The following attribute(s) is (are) missing on your model: encrypted_password, email" do
Devise::Models.check_fields!(Magician)
end
end