Skip to content

Commit

Permalink
update matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
annvelents committed Dec 30, 2024
1 parent f0657c3 commit b99d81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/graphql/mutations/customers/update_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
expect(result_data['billingConfiguration']['id']).to eq("#{customer.id}-c0nf")
expect(result_data['metadata'][0]['key']).to eq('test-key')
expect(result_data['taxes'][0]['code']).to eq(tax.code)
expect(result_data['applicableInvoiceCustomSections']).to eq(invoice_custom_sections[0..1].map { |section| {'id' => section.id} })
expect(result_data['applicableInvoiceCustomSections']).to match_array(invoice_custom_sections[0..1].map { |section| {'id' => section.id} })
end
end

Expand Down

0 comments on commit b99d81b

Please sign in to comment.