Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong deserialization for coproducts with empty lists #32

Open
vovapolu opened this issue Mar 12, 2019 · 0 comments
Open

Wrong deserialization for coproducts with empty lists #32

vovapolu opened this issue Mar 12, 2019 · 0 comments

Comments

@vovapolu
Copy link

vovapolu commented Mar 12, 2019

import pbdirect._

sealed trait Foo

case class Foo1(li: List[Int])
case class Foo2(ll: List[Long])
import cats.instances.list._

println(Foo1(List.empty).toPB.toSeq)
println(Foo2(List.empty).toPB.toSeq)

// prints
// WrappedArray()
// WrappedArray()

So in general (a: A).toPb.pbTo[A] == a can be false

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant