diff options
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/account_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb index da1ae4888..8fb5bbddf 100644 --- a/spec/models/account_spec.rb +++ b/spec/models/account_spec.rb @@ -618,10 +618,10 @@ RSpec.describe Account, type: :model do expect(account).not_to model_have_error_on_field(:username) end - it 'is valid even if the username doesn\'t only contains letters, numbers and underscores' do + it 'is invalid if the username doesn\'t only contains letters, numbers and underscores' do account = Fabricate.build(:account, domain: 'domain', username: 'the-doctor') account.valid? - expect(account).not_to model_have_error_on_field(:username) + expect(account).to model_have_error_on_field(:username) end it 'is valid even if the username is longer then 30 characters' do |