Skip to content

Commit 83ac13d

Browse files
committed
Remove "foo" from String.map tests
1 parent 0dd8922 commit 83ac13d

File tree

1 file changed

+2
-2
lines changed
  • tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections

1 file changed

+2
-2
lines changed

tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/StringModule.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ type StringModule() =
7171

7272
[<Test>]
7373
member this.Map() =
74-
let e1 = String.map id "foo"
75-
Assert.AreEqual("foo", e1)
74+
let e1 = String.map id "xyz"
75+
Assert.AreEqual("xyz", e1)
7676

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

0 commit comments

Comments
 (0)