Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
fix method call in rspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ryscher committed Sep 30, 2019
1 parent fb60c84 commit 9b8125c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stash_engine/spec/unit/stash/payments/invoicer_spec.rb
Expand Up @@ -34,7 +34,7 @@ module Payments
@cust_id = '9999'
fake_invoice_item = OpenStruct.new(customer: @cust_id, amount: '99.99', currency: 'usd', description: 'Data Processing Charge')
fake_invoice = OpenStruct.new(customer: @cust_id, description: 'Dryad deposit',
metadata: { curator: 'The Curator' }, finalize_invoice: 'STRIPE1234')
metadata: { curator: 'The Curator' }, send_invoice: 'STRIPE1234')
fake_customer = OpenStruct.new(id: @cust_id, email: @author.author_email, description: @author.author_standard_name)

@invoicer = Invoicer.new(resource: @resource, curator: @curator)
Expand Down

0 comments on commit 9b8125c

Please sign in to comment.