aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/absence.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/lib/active_model/validations/absence.rb')
-rw-r--r--activemodel/lib/active_model/validations/absence.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/absence.rb b/activemodel/lib/active_model/validations/absence.rb
index 2c6df60020..1a1863370b 100644
--- a/activemodel/lib/active_model/validations/absence.rb
+++ b/activemodel/lib/active_model/validations/absence.rb
@@ -3,7 +3,7 @@ module ActiveModel
# == Active Model Absence Validator
class AbsenceValidator < EachValidator #:nodoc:
def validate_each(record, attr_name, value)
- record.errors.add(attr_name, :not_blank, options) if value.present?
+ record.errors.add(attr_name, :present, options) if value.present?
end
end