Skip to content

Commit

Permalink
Update zio, zio-test, zio-test-sbt to 2.0.2 (#571)
Browse files Browse the repository at this point in the history
* Update zio, zio-test, zio-test-sbt to 2.0.2

* Merge master and fix deprecation warnings due to zio update

Co-authored-by: Michael Nedokushev <[email protected]>
  • Loading branch information
scala-steward and grouzen authored Sep 2, 2022
1 parent 6281cce commit d077fff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ object TracingTest extends ZIOSpecDefault {
_ <- ZIO.scoped(Tracing.live.build)
finishedSpans <- getFinishedSpans
} yield assert(finishedSpans)(hasSize(equalTo(0)))
}.provideCustomLayer(inMemoryTracerLayer),
}.provideLayer(inMemoryTracerLayer),
suite("spans")(
test("childSpan") {
for {
Expand Down Expand Up @@ -314,6 +314,6 @@ object TracingTest extends ZIOSpecDefault {
released <- ref.get
} yield assert(released)(isFalse)
}
).provideCustomLayer(tracingMockLayer)
).provideLayer(tracingMockLayer)
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,6 @@ object OpenTracingTest extends ZIOSpecDefault {
} yield assert(fooBag)(isSome(equalTo("bar"))) &&
assert(barBag)(isSome(equalTo("baz")))
}
).provideCustomLayer(customLayer)
).provideLayer(customLayer)
)
}
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object Dependencies {
val opentelemetry = "1.17.0"
val opencensus = "0.31.1"
val scalaCollectionCompat = "2.8.1"
val zio = "2.0.0"
val zio = "2.0.2"
}

private object ExampleVersions {
Expand Down

0 comments on commit d077fff

Please sign in to comment.