diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-20 00:14:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-20 06:14:10 +0100 |
commit | bf785df9fe044f2f13bfb93e6860a74084d8eb8a (patch) | |
tree | 9e4c5263c97b69f2359ef1105df23530521e13f5 /spec/models/account_spec.rb | |
parent | 4552685f6bd400666ec4058783eeabb11568e575 (diff) |
Audofix Rubocop Style/WordArray (#23739)
Diffstat (limited to 'spec/models/account_spec.rb')
-rw-r--r-- | spec/models/account_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb index 726e33048..24239f85d 100644 --- a/spec/models/account_spec.rb +++ b/spec/models/account_spec.rb @@ -895,7 +895,7 @@ RSpec.describe Account, type: :model do describe 'partitioned' do it 'returns a relation of accounts partitioned by domain' do - matches = ['a', 'b', 'a', 'b'] + matches = %w(a b a b) matches.size.times.to_a.shuffle.each do |index| matches[index] = Fabricate(:account, domain: matches[index]) end |