summaryrefslogtreecommitdiff
path: root/cli/tests/testdata
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2022-08-02 08:54:17 +1000
committerGitHub <noreply@github.com>2022-08-02 08:54:17 +1000
commit09d14b1b57ffe28e5d43d3fb3ae237cc944596ae (patch)
tree0cd720f5ee394a3a520262f1f060e03da3e5d910 /cli/tests/testdata
parent924aa31fa85689b619147d906d800e3ebad4e52e (diff)
fix(lsp): use correct commit chars for completions (#15366)
Fixes: #15252
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r--cli/tests/testdata/lsp/completion_request_response_empty.json13
1 files changed, 8 insertions, 5 deletions
diff --git a/cli/tests/testdata/lsp/completion_request_response_empty.json b/cli/tests/testdata/lsp/completion_request_response_empty.json
index c2218aaa7..9ece16e90 100644
--- a/cli/tests/testdata/lsp/completion_request_response_empty.json
+++ b/cli/tests/testdata/lsp/completion_request_response_empty.json
@@ -9,8 +9,7 @@
"insertText": ".",
"commitCharacters": [
"\"",
- "'",
- "/"
+ "'"
]
},
{
@@ -21,8 +20,7 @@
"insertText": "..",
"commitCharacters": [
"\"",
- "'",
- "/"
+ "'"
]
},
{
@@ -42,7 +40,12 @@
}
},
"newText": "http://localhost:4545"
- }
+ },
+ "commitCharacters": [
+ "\"",
+ "'",
+ "/"
+ ]
}
]
}