Skip to content

Commit 8698b84

Browse files
authored
Cleanup comments
1 parent 0e70c43 commit 8698b84

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

private/buf/buflsp/completion_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,19 @@ func TestCompletion(t *testing.T) {
5555
},
5656
{
5757
name: "complete_builtin_service",
58-
line: 14, // Line 15 in file (1-indexed) = line 14 in LSP (0-indexed) with "// complete_builtin_service"
59-
character: 2, // Indented position where "rpc" would be
58+
line: 14,
59+
character: 2, // Indented position where "rpc" would be
6060
expectedContains: []string{"rpc", "option"},
6161
},
6262
{
6363
name: "complete_rpc_request_type",
64-
line: 13, // Line 14 in file (1-indexed) = line 13 in LSP (0-indexed) with RPC definition
64+
line: 13,
6565
character: uint32(len(" rpc GetUser(Get") - 1),
6666
expectedContains: []string{"GetUserRequest", "GetUserResponse"},
6767
},
6868
{
6969
name: "complete_rpc_response_type",
70-
line: 13, // Line 14 in file (1-indexed) = line 13 in LSP (0-indexed) with RPC definition
70+
line: 13,
7171
character: uint32(len(" rpc GetUser(Get) returns (Get") - 1),
7272
expectedContains: []string{"GetUserRequest", "GetUserResponse"},
7373
},

0 commit comments

Comments
 (0)