Fix randomly failing spec.
This commit is contained in:
parent
af1e2865f7
commit
647cf7545d
|
@ -278,7 +278,9 @@ RSpec.describe UsersController do
|
||||||
}
|
}
|
||||||
|
|
||||||
expect(response).to be_success
|
expect(response).to be_success
|
||||||
expect(JSON.parse(response.body)["groups"].last['name']).to eq(messageable_group.name)
|
|
||||||
|
expect(JSON.parse(response.body)["groups"].map { |group| group['name'] })
|
||||||
|
.to contain_exactly(messageable_group.name, Group.find(Group::AUTO_GROUPS[:moderators]).name)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'searches for mentionable groups' do
|
it 'searches for mentionable groups' do
|
||||||
|
|
Loading…
Reference in New Issue