Browse code

reorder imports with goimports

Signed-off-by: Antonio Murdaca <runcom@redhat.com>

Antonio Murdaca authored on 2015/12/17 00:35:35
Showing 4 changed files
... ...
@@ -3,8 +3,9 @@
3 3
 package overlay
4 4
 
5 5
 import (
6
-	"github.com/docker/docker/daemon/graphdriver/graphtest"
7 6
 	"testing"
7
+
8
+	"github.com/docker/docker/daemon/graphdriver/graphtest"
8 9
 )
9 10
 
10 11
 // This avoids creating a new driver for each test if all tests are run
... ...
@@ -3,8 +3,9 @@
3 3
 package zfs
4 4
 
5 5
 import (
6
-	"github.com/docker/docker/daemon/graphdriver/graphtest"
7 6
 	"testing"
7
+
8
+	"github.com/docker/docker/daemon/graphdriver/graphtest"
8 9
 )
9 10
 
10 11
 // This avoids creating a new driver for each test if all tests are run
... ...
@@ -1,8 +1,9 @@
1 1
 package daemon
2 2
 
3 3
 import (
4
-	"github.com/docker/docker/volume"
5 4
 	"testing"
5
+
6
+	"github.com/docker/docker/volume"
6 7
 )
7 8
 
8 9
 func TestParseVolumesFrom(t *testing.T) {
... ...
@@ -5,15 +5,16 @@ package main
5 5
 import (
6 6
 	"encoding/json"
7 7
 	"fmt"
8
-	"github.com/docker/docker/pkg/authorization"
9
-	"github.com/docker/docker/pkg/integration/checker"
10
-	"github.com/docker/docker/pkg/plugins"
11
-	"github.com/go-check/check"
12 8
 	"io/ioutil"
13 9
 	"net/http"
14 10
 	"net/http/httptest"
15 11
 	"os"
16 12
 	"strings"
13
+
14
+	"github.com/docker/docker/pkg/authorization"
15
+	"github.com/docker/docker/pkg/integration/checker"
16
+	"github.com/docker/docker/pkg/plugins"
17
+	"github.com/go-check/check"
17 18
 )
18 19
 
19 20
 const testAuthZPlugin = "authzplugin"