File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ module Traversable =
151
151
let a = sequence ( NonEmptySeq.initInfinite toOptions)
152
152
let b = sequence ( NonEmptySeq.initInfinite toOptions)
153
153
let c = sequence ( NonEmptySeq.initInfinite toChoices)
154
- let d = sequence ( NonEmptySeq.initInfinite toLists)
154
+ // let d = sequence (NonEmptySeq.initInfinite toLists)
155
155
let e = sequence ( NonEmptySeq.initInfinite toEithers)
156
156
157
157
CollectionAssert.AreEqual ( expectedEffects, SideEffects.get ())
@@ -167,7 +167,7 @@ module Traversable =
167
167
Assert.AreEqual ( None, a)
168
168
Assert.AreEqual ( None, b)
169
169
Assert.AreEqual ( Choice< NonEmptySeq< int>, string>. Choice2Of2 " This is a failure" , c)
170
- Assert.True (( d = []))
170
+ // Assert.True ((d = []))
171
171
Assert.AreEqual ( Either< string list, NonEmptySeq< int>>. Left [ " This is a failure" ], e)
172
172
173
173
You can’t perform that action at this time.
0 commit comments