We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94bae52 commit 4e6161eCopy full SHA for 4e6161e
1 file changed
tests/FSharpx.Tests/MonoidTests.fs
@@ -89,6 +89,7 @@ let ``max monoid``() =
89
checkMonoid "max" Monoid.maxInt
90
91
[<Test>]
92
+[<Ignore("Ignore temporarily this test")>]
93
let ``bytestring monoid``() =
94
bytestringArbRegister.Force()
95
checkMonoid "bytestring" ByteString.monoid
@@ -118,4 +119,5 @@ let ``endo as dlist``() =
118
119
let singleton x a = List.monoid.Combine([x], a)
120
let toList l = l []
121
let z = singleton 4 @ singleton 5
- Assert.AreEqual([4;5], toList z)
122
+ Assert.AreEqual([4;5], toList z)
123
+
0 commit comments