summaryrefslogtreecommitdiff
path: root/runconfig/config_test.go
diff options
context:
space:
mode:
authorPeter Waller <p@pwaller.net>2015-06-30 17:41:01 +0100
committerPeter Waller <p@pwaller.net>2015-06-30 17:43:17 +0100
commit9c2374d19623581028f070bc93fa4c60a660dce4 (patch)
tree90a250fee844c44ad03c21955da41ff86ed14fc4 /runconfig/config_test.go
parent90024b952c744d3dca286d5a704e133accca996d (diff)
downloaddocker-9c2374d19623581028f070bc93fa4c60a660dce4.tar.gz
Move /nat to /pkg/nat
By convention /pkg is safe to use from outside the docker tree, for example if you're building a docker orchestrator. /nat currently doesn't have any dependencies outside of /pkg, so it seems reasonable to move it there. This rename was performed with: ``` gomvpkg -vcs_mv_cmd="git mv {{.Src}} {{.Dst}}" \ -from github.com/docker/docker/nat \ -to github.com/docker/docker/pkg/nat ``` Signed-off-by: Peter Waller <p@pwaller.net>
Diffstat (limited to 'runconfig/config_test.go')
-rw-r--r--runconfig/config_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runconfig/config_test.go b/runconfig/config_test.go
index 6be68b6cc8..7c445e6d6a 100644
--- a/runconfig/config_test.go
+++ b/runconfig/config_test.go
@@ -8,7 +8,7 @@ import (
"strings"
"testing"
- "github.com/docker/docker/nat"
+ "github.com/docker/docker/pkg/nat"
)
func parse(t *testing.T, args string) (*Config, *HostConfig, error) {