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
Copy file name to clipboardExpand all lines: jsoniter-scala-macros/shared/src/test/scala-3/com/github/plokhotnyuk/jsoniter_scala/macros/JsonCodecMakerNewTypeSpec.scala
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,8 +68,12 @@ class JsonCodecMakerNewTypeSpec extends VerifyingSpec {
Copy file name to clipboardExpand all lines: jsoniter-scala-next-tests/shared/src/test/scala-3/com/github/plokhotnyuk/jsoniter_scala/macros/JsonCodecMakerNamedTupleSpec.scala
+12-10Lines changed: 12 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -10,25 +10,20 @@ class JsonCodecMakerNamedTupleSpec extends VerifyingSpec {
10
10
verifySerDeser(make[(i: Int)], (i =1), """{"i":1}""")
11
11
verifySerDeser(make[(i: Int, s: String)], (i =1, s ="VVV"), """{"i":1,"s":"VVV"}""")
12
12
}
13
-
"serialize and deserialize tuples derived from named tuples" in {
0 commit comments