Skip to content

Commit

Permalink
Update zio to 2.0.18 (#125)
Browse files Browse the repository at this point in the history
* Update zio to 2.0.18

* update zio & scala 2 & scala 3
  • Loading branch information
poslegm authored Oct 1, 2023
1 parent cb4f363 commit 7951c2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ inThisBuild(
)

val scala212 = "2.12.18"
val scala213 = "2.13.10"
val scala3 = "3.2.2"
val scala213 = "2.13.12"
val scala3 = "3.3.1"

lazy val Version = new {
val munit = "0.7.29"
val zio = "2.0.13"
val zio = "2.0.18"
val scalaJavaTime = "2.5.0"
}

Expand Down
2 changes: 1 addition & 1 deletion core/src/test/scala/munit/ZSuiteLocalFixtureSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ZSuiteLocalFixtureSpec extends ZSuite {
ZIO.acquireRelease(ZIO.attempt { state += 1; state })(_ => ZIO.attempt { state += 1 }.orDie)
)

override val munitFixtures = Seq(fixture)
override val munitFixtures: Seq[Fixture[_]] = Seq(fixture)

override def beforeAll(): Unit =
assertEquals(state, 0)
Expand Down

0 comments on commit 7951c2b

Please sign in to comment.