Skip to content

Commit

Permalink
Remove "foo" from String.map tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abelbraaksma committed Jun 19, 2020
1 parent 0dd8922 commit 83ac13d
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 83ac13d

Please sign in to comment.