From c8253cffe24b728e95a94394b970ff4cb75c1c77 Mon Sep 17 00:00:00 2001 From: Rohan Challa Date: Wed, 29 Jan 2020 11:39:27 -0500 Subject: [PATCH] internal/lsp/mod: fix test that checks for unchanged go.mod The test that checks to make sure a user's go.mod file does not change if tempModfile=true is not doing anything. At some point, the go.mod file to test added a go directive. This change removes the go directive from the go.mod file. Change-Id: I1c4b6b326e99d8fec5c21ac779dcdcd73610f48c Reviewed-on: https://go-review.googlesource.com/c/tools/+/216840 Run-TryBot: Rohan Challa TryBot-Result: Gobot Gobot Reviewed-by: Rebecca Stambler --- internal/lsp/mod/testdata/unchanged/go.mod | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/lsp/mod/testdata/unchanged/go.mod b/internal/lsp/mod/testdata/unchanged/go.mod index e5bdaef9d1..e3d13cebe5 100644 --- a/internal/lsp/mod/testdata/unchanged/go.mod +++ b/internal/lsp/mod/testdata/unchanged/go.mod @@ -1,3 +1 @@ module unchanged - -go 1.14