FlexTradeUKLtd / jfixture-scala

Customisations for JFixture to make it more useful when writing Scala
3 stars 4 forks source link

Support Scala 2.13 #17

Closed Rocketeer007 closed 2 years ago

Rocketeer007 commented 2 years ago

The current implementation of jfixture-scala requires the implicit collection converters, which are changed in Scala 2.13

This makes it unusable in Scala 2.13. The proposed solution replaces the implicit conversion with explicit conversion via an Array, which is probably slower, but will work across scala versions without having to have different imports on each version.