Skip to content

Commit

Permalink
Remove test to check jobs in github
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Domin committed Jul 24, 2023
1 parent 38755a0 commit 0242e73
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions json/circe/src/test/scala/sttp/client4/circe/CirceTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ package sttp.client4.circe

import io.circe._
import io.circe.syntax.EncoderOps
import io.circe.syntax.EncoderOps
import io.circe.JsonObject
import sttp.model.Uri
import org.scalatest._
import sttp.client4.internal._
import sttp.client4._
Expand Down Expand Up @@ -108,15 +105,6 @@ class CirceTests extends AnyFlatSpec with Matchers with EitherValues {
ct shouldBe Some("horses/cats")
}

it should "serialize from JsonObject using implicit circeBodySerializer" in {
val jObject: JsonObject = JsonObject(("location", "hometown".asJson), ("bio", "Scala programmer".asJson))
val result = basicRequest.get(Uri("http://example.org")).body(jObject).body.show

val expectedResult = "string: {\"location\":\"hometown\",\"bio\":\"Scala programmer\"}"

result should be(expectedResult)
}

case class Inner(a: Int, b: Boolean, c: String)

object Inner {
Expand Down

0 comments on commit 0242e73

Please sign in to comment.