Skip to content

Commit

Permalink
Fixed Elixir 1.4 errors from tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
asummers committed Feb 9, 2017
1 parent 5c665f6 commit 29f8425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/stripe/converter_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ defmodule Stripe.ConverterTest do
}
}

result = Converter.stripe_map_to_struct(ConverterTest.Person, json_response)
result = Converter.stripe_map_to_struct(ConverterTest.Person, json_response())
assert result == expected_result
end

Expand Down Expand Up @@ -73,7 +73,7 @@ defmodule Stripe.ConverterTest do
}

result = Converter.stripe_map_to_struct(
ConverterTest.AuthToken, json_response_with_card_subobject
ConverterTest.AuthToken, json_response_with_card_subobject()
)
assert result == expected_result
end
Expand Down

0 comments on commit 29f8425

Please sign in to comment.