Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/setup-java…
Browse files Browse the repository at this point in the history
…-4.5.0
  • Loading branch information
shtukas authored Oct 25, 2024
2 parents 5f9a8a2 + 895316f commit 2ebfa02
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import upickle.default._

case class ZuoraSubscription(
subscriptionNumber: String,
id: String,
version: Int,
customerAcceptanceDate: LocalDate,
contractEffectiveDate: LocalDate,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ object EstimationHandlerSpec extends ZIOSpecDefault {

private val subscription1 = ZuoraSubscription(
subscriptionNumber = "S1",
id = "I1",
version = 4,
accountNumber = "A9107",
customerAcceptanceDate = LocalDate.of(2022, 1, 1),
Expand Down Expand Up @@ -66,6 +67,7 @@ object EstimationHandlerSpec extends ZIOSpecDefault {

private val subscription2 = ZuoraSubscription(
subscriptionNumber = "S1",
id = "I2",
version = 4,
accountNumber = "A9107",
customerAcceptanceDate = LocalDate.of(2022, 1, 1),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ class NotificationHandlerTest extends munit.FunSuite {
ZIO.succeed(
ZuoraSubscription(
subscriptionNumber = "subscriptionNumber",
id = "id",
version = 1,
customerAcceptanceDate = LocalDate.of(2024, 2, 7),
contractEffectiveDate = LocalDate.of(2024, 2, 7),
Expand Down

0 comments on commit 2ebfa02

Please sign in to comment.