Skip to content

Commit

Permalink
fmt test sources
Browse files Browse the repository at this point in the history
  • Loading branch information
guersam committed Jul 4, 2024
1 parent d9a785c commit a7bf6ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1607,6 +1607,7 @@ object JsonCodecSpec extends ZIOSpecDefault {
}

@rejectExtraFields final case class CaseClass0WithRejectExtraFields()

object CaseClass0WithRejectExtraFields {
val schema: Schema[CaseClass0WithRejectExtraFields] = DeriveSchema.gen[CaseClass0WithRejectExtraFields]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object DefaultValueSpec extends ZIOSpecDefault {

def spec: Spec[TestEnvironment, Any] =
suite("Custom Spec")(
customSuite,
customSuite
) @@ timeout(90.seconds)

private val customSuite = suite("custom")(
Expand All @@ -24,7 +24,7 @@ object DefaultValueSpec extends ZIOSpecDefault {
)
)

case class WithDefaultValue(orderId:Int, description: String = "desc")
case class WithDefaultValue(orderId: Int, description: String = "desc")

object WithDefaultValue {
implicit lazy val schema: Schema[WithDefaultValue] = DeriveSchema.gen[WithDefaultValue]
Expand Down

0 comments on commit a7bf6ff

Please sign in to comment.