Update fs2-core, fs2-io to 2.5.4

This commit is contained in:
Scala Steward
2021-03-30 22:44:52 +02:00
committed by Eike Kettner
parent e8f61c67d0
commit 144ea852bf
10 changed files with 16 additions and 16 deletions

View File

@ -42,7 +42,7 @@ object Store {
for {
xa <- hxa
st = new StoreImpl[F](jdbc, xa)
_ <- Resource.liftF(st.migrate)
_ <- Resource.eval(st.migrate)
} yield st
}
}

View File

@ -62,6 +62,6 @@ object StoreFixture {
for {
xa <- makeXA(jdbc)
store = new StoreImpl[IO](jdbc, xa)
_ <- Resource.liftF(store.migrate)
_ <- Resource.eval(store.migrate)
} yield store
}