Skip to content
Merged
Prev Previous commit
Remove "foo" from String.map tests
  • Loading branch information
abelbraaksma committed Jun 19, 2020
commit 83ac13da612d87a746f6807c0409fcd5de722ba2
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ type StringModule() =

[<Test>]
member this.Map() =
let e1 = String.map id "foo"
Assert.AreEqual("foo", e1)
let e1 = String.map id "xyz"
Assert.AreEqual("xyz", e1)

let e2 = String.map (fun c -> c + char 1) "abcde"
Assert.AreEqual("bcdef", e2)
Expand Down