Skip to content

Commit

Permalink
Disable monad/alternative tests for Chunk temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
mpilquist committed Jul 1, 2022
1 parent b04e816 commit cef25da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/shared/src/test/scala/fs2/ChunkSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ class ChunkSuite extends Fs2Suite {
}

checkAll(s"Eq[Chunk[$of]]", EqTests[Chunk[A]].eqv)
checkAll("Monad[Chunk]", MonadTests[Chunk].monad[A, A, A])
checkAll("Alternative[Chunk]", AlternativeTests[Chunk].alternative[A, A, A])
// TODO - uncomment Monad/Alternative tests when this is fixed: https://github.com/typelevel/cats/issues/4263
// checkAll("Monad[Chunk]", MonadTests[Chunk].monad[A, A, A])
// checkAll("Alternative[Chunk]", AlternativeTests[Chunk].alternative[A, A, A])
checkAll("TraverseFilter[Chunk]", TraverseFilterTests[Chunk].traverseFilter[A, A, A])

if (testTraverse)
Expand Down

0 comments on commit cef25da

Please sign in to comment.