File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/FsAutoComplete.Tests.Lsp Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -501,11 +501,11 @@ let private checkRangesScript server sourceWithCursors =
501501 let tempFile = Path.GetTempFileName()
502502 let scriptFile = Path.ChangeExtension( tempFile, " .fsx" )
503503 File.WriteAllText( scriptFile, source)
504-
504+
505505 try
506506 let! ( doc , diags ) = server |> Server.openDocument scriptFile
507507 Expect.isEmpty diags " There should be no diagnostics in script file"
508-
508+
509509 let request : ReferenceParams =
510510 { TextDocument = doc.TextDocumentIdentifier
511511 Position = cursors.Cursor.Value
@@ -514,7 +514,7 @@ let private checkRangesScript server sourceWithCursors =
514514 PartialResultToken = None }
515515
516516 let! refs = doc.Server.Server.TextDocumentReferences request
517-
517+
518518 let refs =
519519 refs
520520 |> Flip.Expect.wantOk " Should not fail"
You can’t perform that action at this time.
0 commit comments