We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27ef50 commit b3ccf54Copy full SHA for b3ccf54
cmd/gitbase/command/server_test.go
@@ -7,8 +7,8 @@ import (
7
"path/filepath"
8
"testing"
9
10
+ fixtures "github.com/src-d/go-git-fixtures"
11
"github.com/stretchr/testify/require"
- fixtures "gopkg.in/src-d/go-git-fixtures.v3"
12
)
13
14
func TestDirectories(t *testing.T) {
@@ -154,11 +154,9 @@ func TestDirectories(t *testing.T) {
154
}
155
156
func TestDiscoverBare(t *testing.T) {
157
- err := fixtures.Init()
158
- require.NoError(t, err)
159
defer func() {
160
- _ = fixtures.Clean()
161
- }
+ require.NoError(t, fixtures.Clean())
+ }()
162
163
tmpDir, err := ioutil.TempDir("", "gitbase")
164
require.NoError(t, err)
0 commit comments