From 919acb9f1ffda3028c42840623ff091b9523ca0b Mon Sep 17 00:00:00 2001 From: Rebecca Stambler Date: Tue, 16 Jul 2019 01:27:56 -0400 Subject: [PATCH] internal/lsp: add continue to source_test Noticed this because I was accidentally running these tests with Go 1.11. Change-Id: Ic35d71bd1da9078b4bde6aa2ed62d54a8b95b0e0 Reviewed-on: https://go-review.googlesource.com/c/tools/+/186298 Run-TryBot: Rebecca Stambler TryBot-Result: Gobot Gobot Reviewed-by: Suzy Mueller --- internal/lsp/source/source_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/lsp/source/source_test.go b/internal/lsp/source/source_test.go index a73a0afbf0..1adfcd827a 100644 --- a/internal/lsp/source/source_test.go +++ b/internal/lsp/source/source_test.go @@ -495,6 +495,7 @@ func (r *runner) Rename(t *testing.T, data tests.Renames) { ident, err := source.Identifier(r.ctx, r.view, f.(source.GoFile), pos) if err != nil { t.Error(err) + continue } changes, err := ident.Rename(r.ctx, newText) if err != nil {