Skip to content

Commit

Permalink
make test succeed
Browse files Browse the repository at this point in the history
  • Loading branch information
ValdemarGr committed Nov 18, 2023
1 parent dcfc570 commit 2195cde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/server/src/test/scala/gql/PerformanceTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class PerformanceTest extends CatsEffectSuite {
.toOption
.get match {
case Application.Subscription(run) =>
run.take(10).compile.drain.timed.map { case (dur, _) => fail(dur.toMillis.toString() + " ms"): Unit }
run.take(10).compile.drain // l.timed.map { case (dur, _) => fail(dur.toMillis.toString() + " ms"): Unit }
case _ => ???
}
}
Expand All @@ -197,7 +197,7 @@ class PerformanceTest extends CatsEffectSuite {
.toOption
.get match {
case Application.Subscription(run) =>
run.take(10).compile.drain.timed.map { case (dur, _) => fail(dur.toMillis.toString() + " ms"): Unit }
run.take(10).compile.drain // .timed.map { case (dur, _) => fail(dur.toMillis.toString() + " ms"): Unit }
case _ => ???
}
}
Expand Down

0 comments on commit 2195cde

Please sign in to comment.