Skip to content

Commit

Permalink
Fix test customer is deletable
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrumm authored and snewcomer committed Sep 6, 2018
1 parent 6ae55e3 commit 212c8ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/stripe/core_resources/customer_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defmodule Stripe.CustomerTest do
assert_stripe_requested(:post, "/v1/customers/cus_123")
end

test "is deleteble" do
test "is deletable" do
{:ok, customer} = Stripe.Customer.retrieve("cus_123")
assert {:ok, %Stripe.Customer{}} = Stripe.Customer.delete(customer)
assert_stripe_requested(:delete, "/v1/customers/#{customer.id}")
Expand Down

0 comments on commit 212c8ee

Please sign in to comment.