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

Commit a7eae73

Browse files
committed
Fix grouping in imports block
1 parent 2d5e9bf commit a7eae73

File tree

13 files changed

+14
-2
lines changed

13 files changed

+14
-2
lines changed

examples/fs_implementation/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import (
1717
1818
"gopkg.in/src-d/go-git.v4"
1919
"gopkg.in/src-d/go-git.v4/storage/filesystem"
20+
2021
"srcd.works/go-billy.v0"
2122
)
2223

fixtures/fixtures.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
"os"
88
"path/filepath"
99

10-
"github.com/alcortesm/tgz"
11-
1210
"gopkg.in/check.v1"
1311
"gopkg.in/src-d/go-git.v4/plumbing"
12+
13+
"github.com/alcortesm/tgz"
1414
"srcd.works/go-billy.v0"
1515
osfs "srcd.works/go-billy.v0/os"
1616
)

plumbing/format/packfile/decoder_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111
"gopkg.in/src-d/go-git.v4/plumbing/storer"
1212
"gopkg.in/src-d/go-git.v4/storage/filesystem"
1313
"gopkg.in/src-d/go-git.v4/storage/memory"
14+
1415
fs "srcd.works/go-billy.v0/memory"
1516

1617
. "gopkg.in/check.v1"

remote_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import (
1818
githttp "gopkg.in/src-d/go-git.v4/plumbing/transport/http"
1919
"gopkg.in/src-d/go-git.v4/storage/filesystem"
2020
"gopkg.in/src-d/go-git.v4/storage/memory"
21+
2122
osfs "srcd.works/go-billy.v0/os"
2223

2324
. "gopkg.in/check.v1"

repository.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"gopkg.in/src-d/go-git.v4/plumbing/storer"
1111
"gopkg.in/src-d/go-git.v4/storage/filesystem"
1212
"gopkg.in/src-d/go-git.v4/storage/memory"
13+
1314
osfs "srcd.works/go-billy.v0/os"
1415
)
1516

storage/filesystem/config_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66

77
"gopkg.in/src-d/go-git.v4/fixtures"
88
"gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit"
9+
910
"srcd.works/go-billy.v0/os"
1011

1112
. "gopkg.in/check.v1"

storage/filesystem/internal/dotgit/dotgit.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"strings"
1111

1212
"gopkg.in/src-d/go-git.v4/plumbing"
13+
1314
"srcd.works/go-billy.v0"
1415
)
1516

storage/filesystem/internal/dotgit/dotgit_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99

1010
"gopkg.in/src-d/go-git.v4/fixtures"
1111
"gopkg.in/src-d/go-git.v4/plumbing"
12+
1213
osfs "srcd.works/go-billy.v0/os"
1314

1415
. "gopkg.in/check.v1"

storage/filesystem/internal/dotgit/writers.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"gopkg.in/src-d/go-git.v4/plumbing/format/idxfile"
1010
"gopkg.in/src-d/go-git.v4/plumbing/format/objfile"
1111
"gopkg.in/src-d/go-git.v4/plumbing/format/packfile"
12+
1213
"srcd.works/go-billy.v0"
1314
)
1415

storage/filesystem/internal/dotgit/writers_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"strconv"
1010

1111
"gopkg.in/src-d/go-git.v4/fixtures"
12+
1213
osfs "srcd.works/go-billy.v0/os"
1314

1415
. "gopkg.in/check.v1"

0 commit comments

Comments
 (0)