1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Update imports to be consistent

Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
This commit is contained in:
Michael Crosby 2014-04-01 07:07:42 +00:00
parent 7a7f59210d
commit 40c6d00c97
2 changed files with 4 additions and 2 deletions

View file

@ -2,12 +2,13 @@ package native
import ( import (
"fmt" "fmt"
"os"
"github.com/dotcloud/docker/pkg/label" "github.com/dotcloud/docker/pkg/label"
"github.com/dotcloud/docker/pkg/libcontainer" "github.com/dotcloud/docker/pkg/libcontainer"
"github.com/dotcloud/docker/runtime/execdriver" "github.com/dotcloud/docker/runtime/execdriver"
"github.com/dotcloud/docker/runtime/execdriver/native/configuration" "github.com/dotcloud/docker/runtime/execdriver/native/configuration"
"github.com/dotcloud/docker/runtime/execdriver/native/template" "github.com/dotcloud/docker/runtime/execdriver/native/template"
"os"
) )
// createContainer populates and configures the container type with the // createContainer populates and configures the container type with the

View file

@ -1,9 +1,10 @@
package runtime package runtime
import ( import (
"testing"
"github.com/dotcloud/docker/runconfig" "github.com/dotcloud/docker/runconfig"
"github.com/dotcloud/docker/utils" "github.com/dotcloud/docker/utils"
"testing"
) )
func TestMergeLxcConfig(t *testing.T) { func TestMergeLxcConfig(t *testing.T) {