Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aherzberg committed Apr 23, 2024
1 parent 99ef73a commit e93055b
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@
name, missing_providers = subject.form_names_from_appointment_practitioners_list(practitioner_without_name)
expect(name).to eq('DEHGHAN, AMIR')
expect(missing_providers).to eq([])

end

it 'can request multiple upstream providers' do
Expand Down Expand Up @@ -129,8 +128,7 @@
receive(:get_provider).and_raise(Common::Exceptions::BackendServiceException)
name, missing_providers = subject.form_names_from_appointment_practitioners_list(practitioner_without_name)
expect(name).to be_nil
expect(missing_providers).to eq(["1407938061"])

expect(missing_providers).to eq(['1407938061'])
end

it 'returns nil if the returned provider does not match the expected structure' do
Expand All @@ -140,7 +138,7 @@

name, missing_providers = subject.form_names_from_appointment_practitioners_list(practitioner_without_name)
expect(name).to be_nil
expect(missing_providers).to eq(["1407938061"])
expect(missing_providers).to eq(['1407938061'])
end
end
end

0 comments on commit e93055b

Please sign in to comment.