mirror of https://github.com/docker/docs.git
reorder imports with goimports
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
8435ea5289
commit
baba1a8493
|
@ -3,8 +3,9 @@
|
||||||
package overlay
|
package overlay
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/docker/daemon/graphdriver/graphtest"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/docker/docker/daemon/graphdriver/graphtest"
|
||||||
)
|
)
|
||||||
|
|
||||||
// This avoids creating a new driver for each test if all tests are run
|
// This avoids creating a new driver for each test if all tests are run
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
package zfs
|
package zfs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/docker/daemon/graphdriver/graphtest"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/docker/docker/daemon/graphdriver/graphtest"
|
||||||
)
|
)
|
||||||
|
|
||||||
// This avoids creating a new driver for each test if all tests are run
|
// This avoids creating a new driver for each test if all tests are run
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
package daemon
|
package daemon
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/docker/volume"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/docker/docker/volume"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestParseVolumesFrom(t *testing.T) {
|
func TestParseVolumesFrom(t *testing.T) {
|
||||||
|
|
|
@ -5,15 +5,16 @@ package main
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/docker/docker/pkg/authorization"
|
|
||||||
"github.com/docker/docker/pkg/integration/checker"
|
|
||||||
"github.com/docker/docker/pkg/plugins"
|
|
||||||
"github.com/go-check/check"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/docker/docker/pkg/authorization"
|
||||||
|
"github.com/docker/docker/pkg/integration/checker"
|
||||||
|
"github.com/docker/docker/pkg/plugins"
|
||||||
|
"github.com/go-check/check"
|
||||||
)
|
)
|
||||||
|
|
||||||
const testAuthZPlugin = "authzplugin"
|
const testAuthZPlugin = "authzplugin"
|
||||||
|
|
Loading…
Reference in New Issue