File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
zio-2/src/test/scala/com/baeldung/scala/zio/json Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import org.scalatest.matchers.should.Matchers
4
4
import org .scalatest .wordspec .AnyWordSpec
5
5
import zio .json .*
6
6
7
- class DecodingSpec extends AnyWordSpec with Matchers {
7
+ class DecodingTest extends AnyWordSpec with Matchers {
8
8
" zio-json" should {
9
9
" decode a JSON object to a case class" in {
10
10
""" {"timeout":789}""" .fromJson[Start ] shouldBe Right (Start (789 ))
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import org.scalatest.matchers.should.Matchers
4
4
import org .scalatest .wordspec .AnyWordSpec
5
5
import zio .json .*
6
6
7
- class EncodingSpec extends AnyWordSpec with Matchers {
7
+ class EncodingTest extends AnyWordSpec with Matchers {
8
8
" zio-json" should {
9
9
" encode a case class to JSON" in {
10
10
Start (100 ).toJson shouldBe """ {"timeout":100}"""
You can’t perform that action at this time.
0 commit comments