Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 841b32d

Browse files
tro3sdboyer
tro3
authored andcommitted
Gofmt tweaks to pass Travis
1 parent e0019c9 commit 841b32d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

cmd/dep/init_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func TestInit(t *testing.T) {
145145
}
146146

147147
// vendor should have been created & populated
148-
for ip, _ := range testCase.importPaths {
148+
for ip := range testCase.importPaths {
149149
h.MustExist(h.Path(root + "/vendor/" + ip))
150150
}
151151
}

cmd/dep/testdata/ensure/override/main.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// Copyright 2016 The Go Authors. All rights reserved.
1+
// Copyright 2017 The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

55
package main
66

77
import (
8-
"fmt"
9-
stuff "github.com/sdboyer/deptest"
8+
"fmt"
9+
10+
stuff "github.com/sdboyer/deptest"
1011
)
1112

1213
func main() {

0 commit comments

Comments
 (0)