diff options
| author | Shulhan <ms@kilabit.info> | 2019-03-01 11:30:40 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2019-03-01 11:30:40 +0700 |
| commit | a948627494943fbb08b626e5f2686030cb56f1fb (patch) | |
| tree | d354eae3ddf6d5d38557089ca33700372b4596c0 /lib/git/git_test.go | |
| parent | db96ed72b1dbebaaa856c0a2d627df33da6827f2 (diff) | |
| download | pakakeh.go-a948627494943fbb08b626e5f2686030cb56f1fb.tar.xz | |
all: fix warnings from linter
Most of the warnings caused by update to linter which cause global
variables declared with grouping "( ... )" and that has been suppressed,
are become false-positive again.
Diffstat (limited to 'lib/git/git_test.go')
| -rw-r--r-- | lib/git/git_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/git_test.go b/lib/git/git_test.go index b05c9ace..8e588abb 100644 --- a/lib/git/git_test.go +++ b/lib/git/git_test.go @@ -15,8 +15,8 @@ import ( const _testRepoDir = "testdata/beku_test" -var ( // nolint: gochecknoglobals - _testRemoteURL string +var ( + _testRemoteURL string //nolint: gochecknoglobals ) func TestClone(t *testing.T) { |
