stripe / stripe-go

Go library for the Stripe API.
https://stripe.com
MIT License
2.17k stars 460 forks source link

Add tests for AddBetaVersion edge cases #1943

Closed jar-stripe closed 4 weeks ago

jar-stripe commented 4 weeks ago

Why

Follow up to https://github.com/stripe/stripe-go/pull/1941. After fixing https://github.com/stripe/stripe-java/pull/1913, I double checked the other SDKs that were modified as part of that work. The golang SDK is implemented correctly but it did not have unit tests for the edge cases in AddBetaVersion. This PR implements the tests for these edge cases.

What