You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you change shop.generators.nonEmptyStringGen to generate shorter strings, ex. to:
val nonEmptyStringGen: Gen[String] =
Gen
.chooseNum(1, 40)
.flatMap { n =>
Gen.buildableOfN[String, Char](n, Gen.alphaChar)
}
PostgresSuite will more likely fail with unique constraint violations and ItemsRuiteSuite:items by brand succeeds will fail because of toLowerCase.capitalize in BrandParam.toDomain string manipulation.
The text was updated successfully, but these errors were encountered:
Repository owner
locked and limited conversation to collaborators
Aug 27, 2022
If you change
shop.generators.nonEmptyStringGen
to generate shorter strings, ex. to:PostgresSuite
will more likely fail with unique constraint violations andItemsRuiteSuite:items by brand succeeds
will fail because oftoLowerCase.capitalize
inBrandParam.toDomain
string manipulation.The text was updated successfully, but these errors were encountered: