diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb index dfb1f5bc615..981d9966117 100644 --- a/spec/models/account_spec.rb +++ b/spec/models/account_spec.rb @@ -714,11 +714,7 @@ RSpec.describe Account do end describe 'validations' do - it 'is invalid without a username' do - account = Fabricate.build(:account, username: nil) - account.valid? - expect(account).to model_have_error_on_field(:username) - end + it { is_expected.to validate_presence_of(:username) } it 'squishes the username before validation' do account = Fabricate(:account, domain: nil, username: " \u3000bob \t \u00a0 \n ")