Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornosami <jasonimison@gmail.com>2019-08-27 16:18:08 +0300
committernosami <jasonimison@gmail.com>2019-08-27 16:25:04 +0300
commit187a7e0041b4060b80b9e6c41be2f5ac017119e1 (patch)
treef4c077e1ff3951bb8b5f3d4860a0a889e30b8115 /main/external
parent5a97a3c0650171fa6cab83c3e0459d887448fa6c (diff)
Fix expected test output
Diffstat (limited to 'main/external')
-rw-r--r--main/external/fsharpbinding/MonoDevelop.FSharp.Tests/Interactive.fs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/external/fsharpbinding/MonoDevelop.FSharp.Tests/Interactive.fs b/main/external/fsharpbinding/MonoDevelop.FSharp.Tests/Interactive.fs
index b242ba6fcc..10ccd7431f 100644
--- a/main/external/fsharpbinding/MonoDevelop.FSharp.Tests/Interactive.fs
+++ b/main/external/fsharpbinding/MonoDevelop.FSharp.Tests/Interactive.fs
@@ -108,7 +108,7 @@ module Interactive =
do! session.TextReceived |> Async.AwaitEvent |> Async.Ignore
let! results = session.TextReceived |> Async.AwaitEvent
session.KillNow()
- results |> should equal "val it : O [] = [|{X = \"\";}|]\n"
+ results |> should equal "val it : O [] = [|{ X = \"\" }|]\n"
} |> toTask
[<Test;AsyncStateMachine(typeof<Task>)>]