We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a186b3e commit f521247Copy full SHA for f521247
tests/service/FsiTests.fs
@@ -280,9 +280,11 @@ let ``EvalScript accepts paths verbatim nothrow``() =
280
let scriptPath = @"C:\bad\path\no\donut.fsx"
281
fsiSession.EvalScriptNonThrowing scriptPath
282
|> showErrors
283
+ |> List.map (fun s -> s.[0..20]) // avoid seeing the hardwired paths
284
+ |> Seq.toList
285
|> shouldEqual
- ["exception Operation could not be completed due to earlier error";
- "error 1,0 - 1,33; Unable to find the file 'C:\\bad\\path\\no\\donut.fsx' in any of\n C:\\Users\\dsyme\\AppData\\Local\\Temp"]
286
+ ["exception Operation c";
287
+ "error 1,0 - 1,33; Una"]
288
289
290
[<Test>]
0 commit comments