check-v1
authorPaul Tagliamonte <paultag@debian.org>
Tue, 12 Jul 2016 14:46:35 +0000 (15:46 +0100)
committerTianon Gravi <tianon@debian.org>
Tue, 12 Jul 2016 14:46:35 +0000 (15:46 +0100)
Gbp-Pq: Name check-v1.patch

114 files changed:
integration-cli/benchmark_test.go
integration-cli/check_test.go
integration-cli/daemon.go
integration-cli/docker_api_attach_test.go
integration-cli/docker_api_auth_test.go
integration-cli/docker_api_build_test.go
integration-cli/docker_api_containers_test.go
integration-cli/docker_api_create_test.go
integration-cli/docker_api_events_test.go
integration-cli/docker_api_exec_resize_test.go
integration-cli/docker_api_exec_test.go
integration-cli/docker_api_images_test.go
integration-cli/docker_api_info_test.go
integration-cli/docker_api_inspect_test.go
integration-cli/docker_api_inspect_unix_test.go
integration-cli/docker_api_logs_test.go
integration-cli/docker_api_network_test.go
integration-cli/docker_api_resize_test.go
integration-cli/docker_api_stats_test.go
integration-cli/docker_api_test.go
integration-cli/docker_api_update_unix_test.go
integration-cli/docker_api_version_test.go
integration-cli/docker_api_volumes_test.go
integration-cli/docker_cli_attach_test.go
integration-cli/docker_cli_attach_unix_test.go
integration-cli/docker_cli_authz_unix_test.go
integration-cli/docker_cli_build_test.go
integration-cli/docker_cli_build_unix_test.go
integration-cli/docker_cli_by_digest_test.go
integration-cli/docker_cli_commit_test.go
integration-cli/docker_cli_config_test.go
integration-cli/docker_cli_cp_from_container_test.go
integration-cli/docker_cli_cp_test.go
integration-cli/docker_cli_cp_to_container_test.go
integration-cli/docker_cli_cp_to_container_unix_test.go
integration-cli/docker_cli_cp_utils.go
integration-cli/docker_cli_create_test.go
integration-cli/docker_cli_daemon_experimental_test.go
integration-cli/docker_cli_daemon_not_experimental_test.go
integration-cli/docker_cli_daemon_test.go
integration-cli/docker_cli_diff_test.go
integration-cli/docker_cli_events_test.go
integration-cli/docker_cli_events_unix_test.go
integration-cli/docker_cli_exec_test.go
integration-cli/docker_cli_exec_unix_test.go
integration-cli/docker_cli_experimental_test.go
integration-cli/docker_cli_export_import_test.go
integration-cli/docker_cli_external_graphdriver_unix_test.go
integration-cli/docker_cli_help_test.go
integration-cli/docker_cli_history_test.go
integration-cli/docker_cli_images_test.go
integration-cli/docker_cli_import_test.go
integration-cli/docker_cli_info_test.go
integration-cli/docker_cli_inspect_experimental_test.go
integration-cli/docker_cli_inspect_test.go
integration-cli/docker_cli_kill_test.go
integration-cli/docker_cli_links_test.go
integration-cli/docker_cli_links_unix_test.go
integration-cli/docker_cli_login_test.go
integration-cli/docker_cli_logout_test.go
integration-cli/docker_cli_logs_bench_test.go
integration-cli/docker_cli_logs_test.go
integration-cli/docker_cli_nat_test.go
integration-cli/docker_cli_netmode_test.go
integration-cli/docker_cli_network_unix_test.go
integration-cli/docker_cli_oom_killed_test.go
integration-cli/docker_cli_pause_test.go
integration-cli/docker_cli_port_test.go
integration-cli/docker_cli_proxy_test.go
integration-cli/docker_cli_ps_test.go
integration-cli/docker_cli_pull_local_test.go
integration-cli/docker_cli_pull_test.go
integration-cli/docker_cli_pull_trusted_test.go
integration-cli/docker_cli_push_test.go
integration-cli/docker_cli_registry_user_agent_test.go
integration-cli/docker_cli_rename_test.go
integration-cli/docker_cli_restart_test.go
integration-cli/docker_cli_rm_test.go
integration-cli/docker_cli_rmi_test.go
integration-cli/docker_cli_run_test.go
integration-cli/docker_cli_run_unix_test.go
integration-cli/docker_cli_save_load_test.go
integration-cli/docker_cli_save_load_unix_test.go
integration-cli/docker_cli_search_test.go
integration-cli/docker_cli_sni_test.go
integration-cli/docker_cli_start_test.go
integration-cli/docker_cli_start_volume_driver_unix_test.go
integration-cli/docker_cli_stats_test.go
integration-cli/docker_cli_tag_test.go
integration-cli/docker_cli_top_test.go
integration-cli/docker_cli_update_test.go
integration-cli/docker_cli_update_unix_test.go
integration-cli/docker_cli_userns_test.go
integration-cli/docker_cli_v2_only_test.go
integration-cli/docker_cli_version_test.go
integration-cli/docker_cli_volume_test.go
integration-cli/docker_cli_wait_test.go
integration-cli/docker_experimental_network_test.go
integration-cli/docker_hub_pull_suite_test.go
integration-cli/docker_utils.go
integration-cli/events_utils.go
integration-cli/registry.go
integration-cli/registry_mock.go
integration-cli/requirements.go
integration-cli/trust_server.go
pkg/discovery/discovery_test.go
pkg/discovery/file/file_test.go
pkg/discovery/generator_test.go
pkg/discovery/kv/kv_test.go
pkg/discovery/memory/memory_test.go
pkg/discovery/nodes/nodes_test.go
pkg/integration/checker/checker.go
pkg/integration/dockerCmd_utils.go
pkg/integration/dockerCmd_utils_test.go

index 647d014d30545af8074e587cb91e96960199cf58..3398305ea6557eefc23d06d6859a029eadc381a0 100644 (file)
@@ -9,7 +9,7 @@ import (
        "sync"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) BenchmarkConcurrentContainerActions(c *check.C) {
index aab8e4a786b52493dac87c193f223bbb5f4a2750..971ac31ffcebb612de3254fa7d3a1701df8996b5 100644 (file)
@@ -8,7 +8,7 @@ import (
 
        "github.com/docker/docker/cliconfig"
        "github.com/docker/docker/pkg/reexec"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func Test(t *testing.T) {
index 2e3985af7e644fd2b858f50adf53334a8e453016..f6f5f55e2f4b9e03704251728ae4e6410c683f16 100644 (file)
@@ -18,7 +18,7 @@ import (
        "github.com/docker/docker/pkg/ioutils"
        "github.com/docker/docker/pkg/tlsconfig"
        "github.com/docker/go-connections/sockets"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Daemon represents a Docker daemon for the testing framework.
index a0a8e7d699fde4edc62da45eee2116c5fa9b3238..620f5a92ba89828637a78ad1aa6183a5c9ec782b 100644 (file)
@@ -9,7 +9,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "golang.org/x/net/websocket"
 )
 
index 63e78ab520f65ba19b4ce937cc48e5186e6f83d5..64450640a8495bcaeab9719e03d7bfccb8b44964 100644 (file)
@@ -5,7 +5,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Test case for #22244
index 49de71c9afa47e6d15728bd61db85bf97ea7db39..713290061a5ba0aa1e358fe08d1c640a886ae7a5 100644 (file)
@@ -6,7 +6,7 @@ import (
        "net/http"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestBuildApiDockerfilePath(c *check.C) {
index 2622a54449f176ea6e1e4693a436e8ad5de8bb7c..2249ed15dc37cb9ab0b6e2f4c454368b34bd2c0c 100644 (file)
@@ -21,7 +21,7 @@ import (
        "github.com/docker/engine-api/types"
        containertypes "github.com/docker/engine-api/types/container"
        networktypes "github.com/docker/engine-api/types/network"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestContainerApiGetAll(c *check.C) {
index d29b35501ba6b0d9fa33d654e118c1d61e59b223..727d971e8d5ddf270f2a166584cb1bb0bc60a0d2 100644 (file)
@@ -5,7 +5,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestApiCreateWithNotExistImage(c *check.C) {
index cb219fbc56e427ad65147d04b7822738419cee46..b5a6a30857f669499549a801dfe131a6ec50aacd 100644 (file)
@@ -11,7 +11,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/jsonmessage"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestEventsApiEmptyOutput(c *check.C) {
index 2c0c8766ca3d58cf1355906683d4711ce521242f..cf56a42ab2c291285c512fcffe808c1f660176d2 100644 (file)
@@ -10,7 +10,7 @@ import (
        "sync"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestExecResizeApiHeightWidthNoInt(c *check.C) {
index f16582f40f9bc90c00eca19619b2991f1a290707..c8729abca79f79edc3df5078a2df196a07daae2d 100644 (file)
@@ -11,7 +11,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Regression test for #9414
index 9d35b0c9edbabfbf523b756af8b58ba2a20e0b77..0bee32c1c2143d4b62c920b1007377f30aa8c93a 100644 (file)
@@ -8,7 +8,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestApiImagesFilter(c *check.C) {
index 9e6af66e5a477710d1b4c6edc220ec29c3f673be..a154c1531cc02acc33612d7afb0d7b43c46cc039 100644 (file)
@@ -4,7 +4,7 @@ import (
        "net/http"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestInfoApi(c *check.C) {
index 6b55159aa2516f4f45b1e12de569b56f5fe635b6..e4a2421f73f56301d1a72942987fad87015ec714 100644 (file)
@@ -9,7 +9,7 @@ import (
        "github.com/docker/docker/pkg/stringutils"
        "github.com/docker/engine-api/types"
        "github.com/docker/engine-api/types/versions/v1p20"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestInspectApiContainerResponse(c *check.C) {
index fe59860d5a07d0dc199e0264c4604725b255ba0c..5a9c8a37e1d682d20353b11452fd99924cd9b58f 100644 (file)
@@ -8,7 +8,7 @@ import (
        "net/http"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // #16665
index 2ff27f8eccc95da75b8fdf163a45f6d224b47aae..c71b1cffcd2478abbfe0323e068c05f4082c54d4 100644 (file)
@@ -9,7 +9,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestLogsApiWithStdout(c *check.C) {
index e65c7b5ee5b9b090cfa8c6e587fe060a429b9454..967a7d26796a04d659ee5e610d31fa150c25fdc2 100644 (file)
@@ -12,7 +12,7 @@ import (
        "github.com/docker/engine-api/types"
        "github.com/docker/engine-api/types/filters"
        "github.com/docker/engine-api/types/network"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestApiNetworkGetDefaults(c *check.C) {
index 73023dd2dc58d1ec7ee622363a1ce178798c0597..9466e71d823f6de8ecf35224ff698ee01af22c6c 100644 (file)
@@ -5,7 +5,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestResizeApiResponse(c *check.C) {
index 7c3f8d3916b07ef40ac0532ea74a65fee3e71475..40082d6599fded7dda258a7c40cc8a9554cc7726 100644 (file)
@@ -13,7 +13,7 @@ import (
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/version"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 var expectedNetworkInterfaceStats = strings.Split("rx_bytes rx_dropped rx_errors rx_packets tx_bytes tx_dropped tx_errors tx_packets", " ")
index a7257779fb3b904b1f2941ff8b4e449e5c28713c..cb22bb8d34598469a4f7df7932e0e87e2172ff66 100644 (file)
@@ -12,7 +12,7 @@ import (
 
        "github.com/docker/docker/api"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestApiOptionsRoute(c *check.C) {
index 607e76a4d5ea2da65c4d95a6e529d32140b39fe1..a5b69bafe4447bca8d22bea3e45d4a5627b38b64 100644 (file)
@@ -6,7 +6,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestApiUpdateContainer(c *check.C) {
index ccb148419035b37baa57a397da3baa8ec367bf76..d71a6bb2ba3cbc22f82715eadde5a567c0ef0e2b 100644 (file)
@@ -7,7 +7,7 @@ import (
        "github.com/docker/docker/dockerversion"
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestGetVersion(c *check.C) {
index 732271d02d83f6bb28a18f24bfc3baa5e5f0db73..d4ed266f10a623cffc2882b11153e99452a294f3 100644 (file)
@@ -7,7 +7,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestVolumesApiList(c *check.C) {
index 0ac3e1ac2b977b558806986b0e78dc58fe02b447..91934ad90afc958d8165c870cd54aafa4aa182d4 100644 (file)
@@ -10,7 +10,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 const attachWait = 5 * time.Second
index 7af761d7a30863738ba10670ed50f777136dfd77..b5eab2532f5b7145c55f7756a083268b56db8366 100644 (file)
@@ -10,7 +10,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringid"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "github.com/kr/pty"
 )
 
index 0a208d75e1da2b4df23c2c2d7aefd4aa21df5660..ee469b8d0a351256b761c0e5209d1cffdc6034b1 100644 (file)
@@ -20,7 +20,7 @@ import (
        "github.com/docker/docker/pkg/authorization"
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/plugins"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 const (
index a53df642bb13476ec0482c1884ba1af79775124a..e759574bb56436a3faa644ce1b4b954c7716ad6a 100644 (file)
@@ -21,7 +21,7 @@ import (
        "github.com/docker/docker/pkg/archive"
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringutils"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestBuildJSONEmptyRun(c *check.C) {
index 56ab66efae9f3eb1e0a82f64c1caf5460dc751de..179eef21948b1d76db906d8918a87239c6660601 100644 (file)
@@ -16,7 +16,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/go-units"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestBuildResourceConstraintsAreUsed(c *check.C) {
index f3948d67cc062d2c8417ecde75a89f33932f6efa..713d40992b7e3b00f70a98be8bbb97ef7e30d396 100644 (file)
@@ -14,7 +14,7 @@ import (
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringutils"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 var (
index 086a203124ef1a2510c39c9a1c2e718c0ea4304d..42fc2d5a91633ce4eb41f0f905ff0be41ac1d00b 100644 (file)
@@ -4,7 +4,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestCommitAfterContainerIsDone(c *check.C) {
index 6015231065aa628f7ffed7cf94e274b7f42b7ff9..568954b6f6264202bcdc2cfd88d5cf81017f5589 100644 (file)
@@ -12,7 +12,7 @@ import (
        "github.com/docker/docker/dockerversion"
        "github.com/docker/docker/pkg/homedir"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestConfigHttpHeader(c *check.C) {
index 677085a13496c6ede352c996731d9b84318fcb0e..470b49894389bce539513265e77289cbe31a3be1 100644 (file)
@@ -5,7 +5,7 @@ import (
        "path/filepath"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // docker cp CONTAINER:PATH LOCALPATH
index f1ae7607870b66aee2184838f2372604ac2c31bd..d4de712416a11ab3e9596365400dd9285bf8f329 100644 (file)
@@ -11,7 +11,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 const (
index 63fbd4466588124f77d4d8b8b9531993c786eaac..1170cb6fa7937b37a085bcb5477fd3de99e6145c 100644 (file)
@@ -4,7 +4,7 @@ import (
        "os"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // docker cp LOCALPATH CONTAINER:PATH
index 45d85ba5d1f2679fc2153f00ec1806c3a3a0d75a..be4fac26c111c2857f15631bf8e5ba1067fa9d91 100644 (file)
@@ -9,7 +9,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/system"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Check ownership is root, both in non-userns and userns enabled modes
index 0501c5d735df5cc763947310d43ff8f255b6ccf5..6da0da915447da8c0203922fe0fb7029a3fae3e7 100644 (file)
@@ -11,7 +11,7 @@ import (
 
        "github.com/docker/docker/pkg/archive"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 type fileType uint32
index a22bb3ec509b3c7219d83294b0cd1dcb989191d3..5e72d1972a5b5ba2db3dc0ce7cfd8f36f9aaa17c 100644 (file)
@@ -15,7 +15,7 @@ import (
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringid"
        "github.com/docker/go-connections/nat"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Make sure we can create a simple container with some args
index fea887d72005bbabdba8c37c613dcdfb1000eef9..0e3829d6103ef53ec8060d88a285e11f04f2eed9 100644 (file)
@@ -9,7 +9,7 @@ import (
        "strings"
        "time"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // TestDaemonRestartWithKilledRunningContainer requires live restore of running containers
index 8c5634cc6d7e99c696171c839cc4b95a1caaef51..584e0335a8bec9a356e3276ee58adfe8540934ad 100644 (file)
@@ -7,7 +7,7 @@ import (
        "os"
        "strings"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // os.Kill should kill daemon ungracefully, leaving behind container mounts.
index 348653bf45e2ddbb93d79a104e0bb076e2d254ae..abcc5f72935b6267e6b6a37e697c598b9007a5e2 100644 (file)
@@ -25,7 +25,7 @@ import (
        "github.com/docker/go-units"
        "github.com/docker/libnetwork/iptables"
        "github.com/docker/libtrust"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "github.com/kr/pty"
 )
 
index e0d0914f6c5147d54574ae0da5776b5a29a521c2..797f576d8fcf11e0278693f1accc2a05096abe90 100644 (file)
@@ -4,7 +4,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // ensure that an added file shows up in docker diff
index f17b711cc251f0c955686ed8c1ad2fc8590ec532..11906078a3f3fcf514db30da7af971745e925fea 100644 (file)
@@ -14,7 +14,7 @@ import (
 
        "github.com/docker/docker/daemon/events/testutils"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestEventsTimestampFormats(c *check.C) {
index c5e48f2197f10fa870d5a52f0ed47a8520cfc247..ca8cf1b93ec29ec6a6adbaeb7558b30107af1d13 100644 (file)
@@ -13,7 +13,7 @@ import (
        "unicode"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "github.com/kr/pty"
 )
 
index a8150ad2a4c75ee7becb931dbf6c7e02828e3bbb..007b1a26f3202d24dcc90ad1002cc7385018d8f6 100644 (file)
@@ -15,7 +15,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestExec(c *check.C) {
index 42db4091dd59b814ed157494825fcf8a7e4285a8..a063afa28d69ab104d36940776bd9086fe8d3b80 100644 (file)
@@ -10,7 +10,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "github.com/kr/pty"
 )
 
index 8795078f64663f2e41bb4bd024df99bfb41ff2ec..c7476cc18a2b4780c093d2f4e6cf79cbbba8381c 100644 (file)
@@ -4,7 +4,7 @@ package main
 
 import (
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "strings"
 )
 
index 069dc081621ea7bda455fd82ba7f2898f78c4ca0..59c79e5608e4036dc5afbd47f5ac5e6b08939894 100644 (file)
@@ -6,7 +6,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // export an image and try to import it into a new one
index 33fe4058fc8f197a05225952a46dc59720aa2c6d..316bc5436b6a2a7bf14de0b8ef48cf5eeb694c90 100644 (file)
@@ -17,7 +17,7 @@ import (
        "github.com/docker/docker/daemon/graphdriver/vfs"
        "github.com/docker/docker/pkg/archive"
        "github.com/docker/docker/pkg/plugins"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func init() {
index 93ccbeb8fdacbc5559051a99328c6c9b2bbfa1b3..123115edf72757047097ee36db5dd3305949dd3d 100644 (file)
@@ -8,7 +8,7 @@ import (
 
        "github.com/docker/docker/pkg/homedir"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestHelpTextVerify(c *check.C) {
index 0ee1c46be048f175a0b520534e410000f644018c..b700020b06cb9249a9ea503f725f31ea6adff18a 100644 (file)
@@ -7,7 +7,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // This is a heisen-test.  Because the created timestamp of images and the behavior of
index dbceddf14e707429a0076d1b2ea6abb9692e4429..9720618cb78c2c1752501ad3f19e9fab4214d9f9 100644 (file)
@@ -12,7 +12,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringid"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestImagesEnsureImageIsListed(c *check.C) {
index 9420dafa573d2910dc493f1651135d01a89305fb..0e33a4ed84ec886f279a2c9d4e3f138eaef602a7 100644 (file)
@@ -10,7 +10,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestImportDisplay(c *check.C) {
index dd2369452dd4801155c1b20f207b7e3c67b1cf9f..4a545f1dcccf2a8df009d28f401c7488080d832c 100644 (file)
@@ -7,7 +7,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/utils"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // ensure docker info succeeds
index 0d9a261d8184d5fb26e285b4b932ebd9ff951abb..2fb1649ac4d0701a8e2218ab5995707ae3bf3622 100644 (file)
@@ -5,7 +5,7 @@ package main
 import (
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestInspectNamedMountPoint(c *check.C) {
index 29614537d627f5a858696bedfa0b9d934130a796..4b00859962f7748279eaea48eaad63422a17a6cb 100644 (file)
@@ -11,7 +11,7 @@ import (
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/engine-api/types"
        "github.com/docker/engine-api/types/container"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func checkValidGraphDriver(c *check.C, name string) {
index 05d9a558795343c7240fab38074211fa5e6fa21a..5091fc07b33e4e385aad135c64e512eb310eba58 100644 (file)
@@ -6,7 +6,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestKillContainer(c *check.C) {
index 322b58c653b12a5331fbb20b3390f588022add79..5f43d2d6c895fb8c9069d3a48b5d69f65681381b 100644 (file)
@@ -7,7 +7,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/runconfig"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestLinksPingUnlinkedContainers(c *check.C) {
index 1af927930dc023ec493688a2226f69b9c1265725..a5f7d9e6e39ebeff44cf062c8b42171066e81ea1 100644 (file)
@@ -7,7 +7,7 @@ import (
        "os"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestLinksEtcHostsContentMatch(c *check.C) {
index 01de75d98541f2f9eb2b5b8b0335f402a1e2e764..d5bbe9f50cb88841413da2f54df7478c10967818 100644 (file)
@@ -5,7 +5,7 @@ import (
        "os/exec"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestLoginWithoutTTY(c *check.C) {
index 6658da54c2a1dc298ae7bd0e1639eafc923995d0..87c5f5cad1b05a0e7c627546e80beec2b655d25f 100644 (file)
@@ -7,7 +7,7 @@ import (
        "path/filepath"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerRegistryAuthHtpasswdSuite) TestLogoutWithExternalAuth(c *check.C) {
index eeb008de70198556dd0bed9a0212e4889e08445f..c05dd719807c9451f3ccf401541c273f26b56693 100644 (file)
@@ -5,7 +5,7 @@ import (
        "strings"
        "time"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) BenchmarkLogsCLIRotateFollow(c *check.C) {
index e18916db91e287d39a5848c892d35ba2eb5213d1..a6f08ad9117ca86b1d070d6514725cb9a4213949 100644 (file)
@@ -10,7 +10,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/jsonlog"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // This used to work, it test a log of PageSize-1 (gh#4851)
index 7f4cc2cbd7753fcb857ef7246e14118c2497bed7..45496d3fa9d33a80abf349970651a5c5ea7ac734 100644 (file)
@@ -7,7 +7,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func startServerContainer(c *check.C, msg string, port int) string {
index 142f192def5ade5612dd0da242563cae01bf6526..8266711e86a4a73209d2643919eea64e4fc443f0 100644 (file)
@@ -3,7 +3,7 @@ package main
 import (
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/runconfig"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // GH14530. Validates combinations of --net= with other options
index 902766d0f7091f2a83940bc49049aea3cd27e6b3..c5ef22242d0c9b0f0d6c12b0d2e1e25332c7a107 100644 (file)
@@ -22,7 +22,7 @@ import (
        "github.com/docker/libnetwork/ipamapi"
        remoteipam "github.com/docker/libnetwork/ipams/remote/api"
        "github.com/docker/libnetwork/netlabel"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "github.com/vishvananda/netlink"
 )
 
index ff77f572a6eedf0bca5cea2f3b451a143fbd8777..01c85645b3e4cc5a9f03ab8ec205216d61599171 100644 (file)
@@ -4,7 +4,7 @@ package main
 
 import (
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestInspectOomKilledTrue(c *check.C) {
index a42c2f54b682b35a15c188672ab03a3d69c88abd..f12baae04b8cd59c1889dd00514af277df7fc3b1 100644 (file)
@@ -5,7 +5,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestPause(c *check.C) {
index 80b00fe93e75f2bfb6552406acf167646b05c437..68ca3f8a70eb4afa0622b20af9fc47119eb873a8 100644 (file)
@@ -8,7 +8,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestPortList(c *check.C) {
index e5699ca52c785e23f519d57c38ce4e771c1810b7..9a131ed88d3bdf9a2ee84be8b890b17bf09467a2 100644 (file)
@@ -6,7 +6,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestCliProxyDisableProxyUnixSock(c *check.C) {
index 72650ff21c176fdb87456ecdae2c51c6e4b9d0cb..c2e7b781574ff96a52e0671bebac5f0bb6eeb7eb 100644 (file)
@@ -13,7 +13,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringid"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestPsListContainersBase(c *check.C) {
index 1f8583204e6dd282d679f367a38b4cba859c6a9d..b96d9d5f4e318f671d4e5ec66501c79139ddf260 100644 (file)
@@ -16,7 +16,7 @@ import (
        "github.com/docker/distribution/manifest/manifestlist"
        "github.com/docker/distribution/manifest/schema2"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // testPullImageWithAliases pulls a specific image tag and verifies that any aliases (i.e., other
index ac211d25195315c43e9f8be083900a05569724b1..81a8bbb72aab10173c37fc443b1d454f56e81609 100644 (file)
@@ -9,7 +9,7 @@ import (
 
        "github.com/docker/distribution/digest"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // TestPullFromCentralRegistry pulls an image from the central registry and verifies that the client
index 6bc38e699fb62e5fe46d120e5f2a8b5e3b7ed489..25e628f8f70333fd8583b01e59e79b6a122cb286 100644 (file)
@@ -8,7 +8,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerTrustSuite) TestTrustedPull(c *check.C) {
index 6b3d8232ccd3e4fe9a2ee670678bdab7fd0d4fcf..8bf9cea174693141136a3f57b2ed3a753868687e 100644 (file)
@@ -15,7 +15,7 @@ import (
        "github.com/docker/distribution/digest"
        "github.com/docker/docker/cliconfig"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Pushing an image to a private registry.
index 67a950cabd38ad208fcc51c2083d3990b1dd8d10..5ab294c6c04fb3a8dc589a8c30ea91bb501f1998 100644 (file)
@@ -5,7 +5,7 @@ import (
        "net/http"
        "regexp"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // unescapeBackslashSemicolonParens unescapes \;()
index cbb60f8562e4d433810487628ab29a4ff73cba3e..1c3dfa73d2f4b286ccbcd77c4fa1a726def54ea3 100644 (file)
@@ -5,7 +5,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringid"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestRenameStoppedContainer(c *check.C) {
index 31c89203859dc76b1072c59f955618ccb81bb5a4..7bca26752e3edfba6a687e434ace905eb0de2729 100644 (file)
@@ -7,7 +7,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestRestartStoppedContainer(c *check.C) {
index 0186c567413de2751eef99a8e9df75f91cea79c2..73c565887305be40cc0772aaf702cdce45477681 100644 (file)
@@ -5,7 +5,7 @@ import (
        "os"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestRmContainerWithRemovedVolume(c *check.C) {
index 697be326666e41c4b46ad23b13048244b71561bc..c251d514ca8d75792a5b946cdd83321776b5af3e 100644 (file)
@@ -8,7 +8,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringid"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestRmiWithContainerFails(c *check.C) {
index 6e45fca97fd8d04feb74f9d284ff3d1f23ce393a..eee0d94b489c730551e23c34bb3b22612db2564a 100644 (file)
@@ -25,7 +25,7 @@ import (
        "github.com/docker/go-connections/nat"
        "github.com/docker/libnetwork/netutils"
        "github.com/docker/libnetwork/resolvconf"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        libcontainerUser "github.com/opencontainers/runc/libcontainer/user"
 )
 
index fe7cc6977ab4de112b74fa521ed984127f4bfa34..9ddac61e9d12f47dec621ebb5922f5cc65eee224 100644 (file)
@@ -21,7 +21,7 @@ import (
        "github.com/docker/docker/pkg/mount"
        "github.com/docker/docker/pkg/parsers"
        "github.com/docker/docker/pkg/sysinfo"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "github.com/kr/pty"
 )
 
index b21c987bb67eac3f06ec63a63dd036b57002c618..2dd310640e1775249f9114acb084fd80f24c8c92 100644 (file)
@@ -15,7 +15,7 @@ import (
 
        "github.com/docker/distribution/digest"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // save a repo using gz compression and try to load it using stdout
index d9dd95f126e1d2a799bbb365d283ccdf9e3a8819..5cdba85d219e684d76cba8d6d7235accc5709a33 100644 (file)
@@ -10,7 +10,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "github.com/kr/pty"
 )
 
index dfab81044aff9cfb5b1c0eb8ff8b491f75764cf9..f7a988b5c336668d3ae351a93be2750e92d7066d 100644 (file)
@@ -4,7 +4,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // search for repos named  "registry" on the central registry
index fb896d52d5599b9bf3db79d62cd2ae3be0a91fb0..cba8d9764f6db04fbab19de4339af16febc11772 100644 (file)
@@ -10,7 +10,7 @@ import (
        "os/exec"
        "strings"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestClientSetsTLSServerName(c *check.C) {
index 43342191c2d2a6840045dabd5bafe5b30a406fa0..aedfd4d3f4aaa5de94b7910c3855cd96142ae120 100644 (file)
@@ -6,7 +6,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Regression test for https://github.com/docker/docker/issues/7843
index cc5d0b11e6869edfc34174ee73c671b01591796c..c511cf078f53440473f78a224af7c00920ff7e0b 100644 (file)
@@ -17,7 +17,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func init() {
index e3c7a3e2e7fb4c9448327d5637d2e9252e7523af..97861e22dcf17588df8927c64d40afcf66242248 100644 (file)
@@ -8,7 +8,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestStatsNoStream(c *check.C) {
index 1e601527e6f165b41f4cdc1e44ebc4224b6fd20b..e290999dbafc6ce80a49feb7a6a6a5d48f506280 100644 (file)
@@ -7,7 +7,7 @@ import (
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/stringid"
        "github.com/docker/docker/pkg/stringutils"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // tagging a named image in a new unprefixed repo should work
index e0865b9212540928e85e616233326a35621cc734..3cf9acea5994197d2e6f527950767e905889cb8d 100644 (file)
@@ -4,7 +4,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestTopMultipleArgs(c *check.C) {
index 188030ffbb8d07736dcf78e02a97d42f5e9a6f7a..5a0178b6ddf3e701f2a7c31f147c18ba7e7e1add 100644 (file)
@@ -5,7 +5,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestUpdateRestartPolicy(c *check.C) {
index c40ad3ee120211b1085c9b3981f404da39661f5b..e4267b1dc4136fbd20b2304b80cab6c0e955946d 100644 (file)
@@ -9,7 +9,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/engine-api/types"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestUpdateRunningContainer(c *check.C) {
index f8b3f77b617473657bc8a76398f543980565efd7..d14d5d3563eaac2084031edf4d02b6341d4cfec0 100644 (file)
@@ -13,7 +13,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/system"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // user namespaces test: run daemon with remapped root setting
index 889936a062846928090ca56fd664af7670b9c2d3..72438e911b0c5954e9c56f522eda9aab92c35e3d 100644 (file)
@@ -6,7 +6,7 @@ import (
        "net/http"
        "os"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func makefile(contents string) (string, func(), error) {
index 7672beb732e7104179d7ebd39f7bdc692448b9c9..16d02c98aff9d2bf97c78f3107ffb94fac19457c 100644 (file)
@@ -4,7 +4,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // ensure docker version works
index a10316f616709add8ad4cd01aa5f4b40d9a5d6b8..4bb0c3b4def992c42a3d0d22e909f66d3420a257 100644 (file)
@@ -5,7 +5,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DockerSuite) TestVolumeCliCreate(c *check.C) {
index 299339756ff728e88db018101bf7adc72f738eb9..4eb7f3ac75f90570a7b682d827b99b07796e78c6 100644 (file)
@@ -7,7 +7,7 @@ import (
        "time"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // non-blocking wait with 0 exit code
index f33dbd1c84f6681e2e3d4c9f04d95884f92fd75e..34377029bc6c2eacc9994a9bc5ead45a117d0432 100644 (file)
@@ -9,7 +9,7 @@ import (
 
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/parsers/kernel"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 var (
index 6aa93469f379fb6b1aaea25f726c529f619ce3e1..9533cc3bdde101b3c073243ce4021a7d72cbdf15 100644 (file)
@@ -6,7 +6,7 @@ import (
        "strings"
 
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func init() {
index 3198287100fa4825d32bf3cfa83a3057882cd002..e9e24527419395f73b4f06fa405d1b73970429d4 100644 (file)
@@ -30,7 +30,7 @@ import (
        "github.com/docker/engine-api/types"
        "github.com/docker/go-connections/tlsconfig"
        "github.com/docker/go-units"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func init() {
index cdd3106b8d5bfc9957cc62139423b1f346cc3519..cc534db1cc377244bbbe6bf8d19775b13659a052 100644 (file)
@@ -12,7 +12,7 @@ import (
        "github.com/Sirupsen/logrus"
        "github.com/docker/docker/daemon/events/testutils"
        "github.com/docker/docker/pkg/integration/checker"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // eventMatcher is a function that tries to match an event input.
index fa3fb875656641b8a534315b0e9ebe808fe63149..e039771807874ad842b3707e6f45633d50713fd0 100644 (file)
@@ -9,7 +9,7 @@ import (
        "path/filepath"
 
        "github.com/docker/distribution/digest"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 const (
index 300bf46425d9177b73d55102d3d7b380fd2d3dfc..cf0c77a1adb25861bba1f2b9bf16be1ebbf7ad63 100644 (file)
@@ -7,7 +7,7 @@ import (
        "strings"
        "sync"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 type handlerFunc func(w http.ResponseWriter, r *http.Request)
index e948c0aae080d0076575a353423a458f5f0957f8..74d77c8860c4049a6e8003cf46559b09122b9b77 100644 (file)
@@ -9,7 +9,7 @@ import (
        "strings"
        "time"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 type testCondition func() bool
index 77314c390197bac2e456ed8221c997824ebf17f9..dbdde3258ef871e590c5271d6a3bde47704e8e66 100644 (file)
@@ -14,7 +14,7 @@ import (
        "github.com/docker/docker/cliconfig"
        "github.com/docker/docker/pkg/integration/checker"
        "github.com/docker/docker/pkg/tlsconfig"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 var notaryBinary = "notary"
index 6084f3ef0d0847e3f7208c8f979df1c081830c03..b1a479cdecb94fcd2b046f83d7761445150e35e2 100644 (file)
@@ -3,7 +3,7 @@ package discovery
 import (
        "testing"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Hook up gocheck into the "go test" runner.
index 667f00ba0d0da1f6d3c8e70f33123e4af5897dec..03b6cb1cdf30866fa38492afff69b4c8c0f65fd4 100644 (file)
@@ -7,7 +7,7 @@ import (
 
        "github.com/docker/docker/pkg/discovery"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Hook up gocheck into the "go test" runner.
index 6281c466652467c879d3faac694602ce46acb4c1..ba73a19516b7ab0addd9951e302ef88ee0e81782 100644 (file)
@@ -1,7 +1,7 @@
 package discovery
 
 import (
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 func (s *DiscoverySuite) TestGeneratorNotGenerate(c *check.C) {
index 4fe5239d3c00f6f7c58f023f9c8f497542a3c405..656e7c876fabd63bac59826e3ead64880430d72c 100644 (file)
@@ -12,7 +12,7 @@ import (
        "github.com/docker/libkv"
        "github.com/docker/libkv/store"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Hook up gocheck into the "go test" runner.
index c2da0a068e862a88c095a5c6c38f1e4e51f60679..70c6786621f1479371652bf8c5ef1e02ac8927fe 100644 (file)
@@ -4,7 +4,7 @@ import (
        "testing"
 
        "github.com/docker/docker/pkg/discovery"
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Hook up gocheck into the "go test" runner.
index e26568cf54fd8b35b0223e4ed59e177354b5c69f..a6b8fea19b0a1eb35a5e6142e7da293231e097af 100644 (file)
@@ -5,7 +5,7 @@ import (
 
        "github.com/docker/docker/pkg/discovery"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // Hook up gocheck into the "go test" runner.
index a5314994cddb83c0b66daaa3f29cddc7a2b2320d..a33808f3d354f3f91315e9385e3bd8882ab44272 100644 (file)
@@ -2,7 +2,7 @@
 package checker
 
 import (
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
        "github.com/vdemeester/shakers"
 )
 
index fab3e062ddc164e4705f023d4695b8bdfe92a9ac..54ea8cc3049ce91fc2f05ccc65392baf1a8fd5c9 100644 (file)
@@ -6,7 +6,7 @@ import (
        "strings"
        "time"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 // We use the elongated quote mechanism for quoting error returns as
index 3dd5d11461e80ecb79c106c64a8e3a25be61f5ba..a5900db04991c926db04b6cb13e9fe96042b9e33 100644 (file)
@@ -10,7 +10,7 @@ import (
        "strings"
        "time"
 
-       "github.com/go-check/check"
+       "gopkg.in/check.v1"
 )
 
 const dockerBinary = "docker"