bump max name length to 32 characters

This commit is contained in:
Joshua Arts
2018-07-24 11:05:25 -04:00
parent 4e87dcbd64
commit d6aee4d2d1
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ describe User, type: :model do
context 'validations' do
it { should validate_presence_of(:name) }
it { should validate_length_of(:name).is_at_most(24) }
it { should validate_length_of(:name).is_at_most(32) }
it { should validate_presence_of(:provider) }