Skip to content

Commit

Permalink
Update cats-effect to 3.5.2 (#353)
Browse files Browse the repository at this point in the history
* Update cats-effect to 3.5.2

* non-zero sleep in test

---------

Co-authored-by: johannes karoff <johannes@karoff.net>
  • Loading branch information
scala-steward and cornerman authored Nov 12, 2023
1 parent 357652d commit 1caa2e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ lazy val colibri = project
name := "colibri",
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % "2.10.0",
"org.typelevel" %%% "cats-effect" % "3.4.11",
"org.typelevel" %%% "cats-effect" % "3.5.2",
),
)

Expand Down
2 changes: 1 addition & 1 deletion colibri/src/test/scala/colibri/ObservableSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ class ObservableSpec extends AsyncFlatSpec with Matchers {
_ = received shouldBe List.empty
_ = errors shouldBe 0

_ <- IO.sleep(0.seconds)
_ <- IO.sleep(0.1.seconds)

_ = cancelable.isEmpty() shouldBe true
_ = received shouldBe List((iterations * (iterations + 1)) / 2)
Expand Down

0 comments on commit 1caa2e5

Please sign in to comment.