-
Notifications
You must be signed in to change notification settings - Fork 162
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
scala2 DeriveSchema intermediate enum fix #749
base: main
Are you sure you want to change the base?
Conversation
@@ -81,7 +81,7 @@ object AvroSchemaCodecSpec extends ZIOSpecDefault { | |||
val expected = | |||
"""[{"type":"record","name":"A","fields":[]},{"type":"record","name":"B","fields":[]},{"type":"record","name":"MyC","fields":[]},{"type":"record","name":"D","fields":[{"name":"s","type":"string"}]}]""" | |||
assert(result)(isRight(equalTo(expected))) | |||
} @@ TestAspect.scala2Only, | |||
} @@ TestAspect.scala2Only @@ TestAspect.ignore, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like this test was created as a workaround for the incorrect Scala2 DeriveSchema behaviour for intermediate traits - it now fails due to the fix as expected - so its OK to ignore/delete this test? cc @devsprint
@@ -559,7 +559,7 @@ object DeriveSchema { | |||
child.typeSignature | |||
val childClass = child.asClass | |||
if (childClass.isSealed && childClass.isTrait) | |||
knownSubclassesOf(childClass) | |||
Set(childClass.asType.toType) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stop recursion if child is sealed trait
actually, gonna try and write a custom unit test for this |
fixes #747