Browse Source

Fix heisenspec (order independent array comparison) (#596)

pull/598/head
baarkerlounger 3 years ago committed by GitHub
parent
commit
19065a3bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      spec/models/user_spec.rb

2
spec/models/user_spec.rb

@ -120,7 +120,7 @@ RSpec.describe User, type: :model do
let!(:other_orgs_log) { FactoryBot.create(:case_log) }
it "has access to logs from all organisations" do
expect(user.case_logs.to_a).to eq([owned_case_log, managed_case_log, other_orgs_log])
expect(user.case_logs.to_a).to match_array([owned_case_log, managed_case_log, other_orgs_log])
end
it "requires 2FA" do

Loading…
Cancel
Save