Skip to content

Commit

Permalink
Update Monix RC and fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown committed Nov 5, 2018
1 parent 820ffc5 commit 5510fe9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -21,7 +21,7 @@ val compilerOptions = Seq(
val catsVersion = "1.4.0"
val catsEffectVersion = "1.0.0"
val disciplineVersion = "0.9.0"
val monixVersion = "3.0.0-RC2-c84f485"
val monixVersion = "3.0.0-RC2-840c090"
val scalazVersion = "7.2.26"
val scalazStreamVersion = "0.8.6a"
val fs2Version = "1.0.0"
Expand Down
Expand Up @@ -12,6 +12,6 @@ class TaskFileModuleTests extends FileModuleSuite[Task] with DefaultTaskModule {
def monadName: String = "Task"

implicit def eqF[A: Eq]: Eq[Task[A]] = Eq.by { task =>
Await.result(task.materialize.runAsync, 5.seconds)
Await.result(task.materialize.runToFuture, 5.seconds)
}
}
2 changes: 1 addition & 1 deletion monix/jvm/src/test/scala/io/iteratee/monix/TaskTests.scala
Expand Up @@ -14,7 +14,7 @@ trait TaskSuite extends ModuleSuite[Task] with DefaultTaskModule {
def monadName: String = "Task"

implicit def eqF[A: Eq]: Eq[Task[A]] = Eq.by { task =>
Await.result(task.materialize.runAsync, 5.seconds)
Await.result(task.materialize.runToFuture, 5.seconds)
}
}

Expand Down

0 comments on commit 5510fe9

Please sign in to comment.