0
0
Fork 0

Minor performance improvement for test suite (#4678)

This commit is contained in:
Eugen Rochko 2017-08-24 13:31:55 +02:00 committed by GitHub
parent fbe1115114
commit c66fe2aeba
3 changed files with 20 additions and 3 deletions

View file

@ -50,14 +50,14 @@ describe Api::V1::Accounts::RelationshipsController do
json = body_as_json
expect(json).to be_a Enumerable
expect(json.first[:id]).to be simon.id
expect(json.first[:id]).to eq simon.id
expect(json.first[:following]).to be true
expect(json.first[:followed_by]).to be false
expect(json.first[:muting]).to be false
expect(json.first[:requested]).to be false
expect(json.first[:domain_blocking]).to be false
expect(json.second[:id]).to be lewis.id
expect(json.second[:id]).to eq lewis.id
expect(json.second[:following]).to be false
expect(json.second[:followed_by]).to be true
expect(json.second[:muting]).to be false