solidusio / solidus_paypal_braintree

⛔️ [Archived] Use solidus_braintree instead!
https://github.com/solidusio/solidus_braintree
BSD 3-Clause "New" or "Revised" License
37 stars 78 forks source link

Fix broken factory #325

Closed johnpitchko closed 2 years ago

johnpitchko commented 2 years ago

Factory uses static assignment, which was deprecated in FactoryBot v5, so instantiating the factory raises an error for any project using a recent release of FactoryBot.

Replaced static assignment with dynamic assignment to resolve this issue.