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 e8e7e25 commit 8384926Copy full SHA for 8384926
tests/LanguageClient_test.py
@@ -93,10 +93,10 @@ def test_textDocument_rename_multiple_oneline(nvim):
93
nvim.command("edit! {}".format(PATH_LIBS_RS))
94
time.sleep(1)
95
expect = [line.replace("a", "x") for line in nvim.current.buffer]
96
- nvim.funcs.cursor(4, 13)
+ nvim.funcs.cursor(2, 9)
97
# TODO: Test case where new variable length is different.
98
nvim.funcs.LanguageClient_textDocument_rename({"newName": "x"})
99
- time.sleep(1)
+ time.sleep(3)
100
101
assert nvim.current.buffer[:] == expect
102
tests/data/sample-rs/src/libs.rs
@@ -1,4 +1,3 @@
1
-
2
pub fn yo() -> i32 {
3
let a = 1;
4
let b = a + a;
0 commit comments