about summary refs log tree commit diff
path: root/spec/models/user_spec.rb
diff options
context:
space:
mode:
authorunarist <m.unarist@gmail.com>2017-06-08 01:59:28 +0900
committerMatt Jankowski <mjankowski@thoughtbot.com>2017-06-07 12:59:28 -0400
commit0f1b1d78b15bd779c3427d4275d45d3e34e0b2ef (patch)
tree46023cf3e052fb90cde91cf34465ed76c90d7195 /spec/models/user_spec.rb
parentd3bbef27e7f15d1322e26ab181a18b2520f9dff6 (diff)
Use "match_array" only for order independent assertions (#3626)
Diffstat (limited to 'spec/models/user_spec.rb')
-rw-r--r--spec/models/user_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb
index 735c78c64..9cb36d467 100644
--- a/spec/models/user_spec.rb
+++ b/spec/models/user_spec.rb
@@ -46,7 +46,7 @@ RSpec.describe User, type: :model do
       it 'returns an array of recent users ordered by id' do
         user_1 = Fabricate(:user)
         user_2 = Fabricate(:user)
-        expect(User.recent).to match_array([user_2, user_1])
+        expect(User.recent).to eq [user_2, user_1]
       end
     end
 
@@ -92,7 +92,7 @@ RSpec.describe User, type: :model do
         ]
         Fabricate(:user, current_sign_in_ip: '0.0.0.0', last_sign_in_ip: '0.0.0.0')
 
-        expect(User.with_recent_ip_address('0.0.0.42')).to eq specifieds
+        expect(User.with_recent_ip_address('0.0.0.42')).to match_array(specifieds)
       end
     end
   end