Skip to content

Commit 0579a0a

Browse files
committed
Clean up whitespace in checkRangesScript function for improved readability
1 parent ac15a76 commit 0579a0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/FsAutoComplete.Tests.Lsp/FindReferencesTests.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)