Skip to content

Commit 4bf34c6

Browse files
committed
Unit test worked
1 parent e177f17 commit 4bf34c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fsharp/FSharp.Compiler.Unittests/SeqFusion.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type SeqFusionTestsModule() =
1313
member this.FuseTwoMapsWithSameType() =
1414
let data = [3; 1; 2]
1515
let result = Seq.map (fun x -> x * 2) (Seq.map (fun x -> x + 2) data)
16-
Assert.areEqual [12; 6; 8] (Seq.toList result)
16+
Assert.areEqual [10; 6; 8] (Seq.toList result)
1717

1818
[<Test>]
1919
member this.FuseTwoMapsWithSameType_String() =

0 commit comments

Comments
 (0)