Skip to content

Commit 783768a

Browse files
committed
Try fixing CI
1 parent a5b5d81 commit 783768a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/tnimlangserver.nim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ suite "LSP features":
364364
.waitFor().to(WorkSpaceEdit).changes.get()
365365
check changes.len == 1
366366
check changes[helloWorldUri].len == 3
367-
check changes[helloWorldUri].mapIt(it["newText"].getStr()) == "hello".repeat(3)
367+
check changes[helloWorldUri].mapIt(it["newText"].getStr()) == @["hello", "hello", "hello"]
368368

369369
test "didChange then sending hover.":
370370
let didChangeParams = DidChangeTextDocumentParams %* {
@@ -404,7 +404,7 @@ suite "LSP features":
404404
doAssert actualEchoCompletionItem.kind.get == 3
405405
doAssert actualEchoCompletionItem.detail.get().contains("proc")
406406
doAssert actualEchoCompletionItem.documentation.isSome
407-
407+
408408
test "Shutdown":
409409
let
410410
nullValue = newJNull()
@@ -570,4 +570,4 @@ suite "LSP expand":
570570
# }},
571571
# "content":"proc helloProc(): string =\n result = \"Hello\"\n"
572572
# }
573-
# doAssert %expected == %expandResult
573+
# doAssert %expected == %expandResult

0 commit comments

Comments
 (0)