27 lines
891 B
Diff
27 lines
891 B
Diff
|
From 0f0c0fcb5b956782385e25c7c6c625e6c79ac78f Mon Sep 17 00:00:00 2001
|
||
|
From: Thomas Hipp <thipp@suse.de>
|
||
|
Date: Wed, 7 Sep 2016 10:54:09 +0200
|
||
|
Subject: [PATCH] integration-cli: fix TestInfoEnsureSucceeds
|
||
|
|
||
|
Signed-off-by: Thomas Hipp <thipp@suse.de>
|
||
|
---
|
||
|
integration-cli/docker_cli_info_test.go | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/integration-cli/docker_cli_info_test.go b/integration-cli/docker_cli_info_test.go
|
||
|
index a48e69a..c265a36 100644
|
||
|
--- a/integration-cli/docker_cli_info_test.go
|
||
|
+++ b/integration-cli/docker_cli_info_test.go
|
||
|
@@ -36,7 +36,7 @@ func (s *DockerSuite) TestInfoEnsureSucceeds(c *check.C) {
|
||
|
}
|
||
|
|
||
|
if DaemonIsLinux.Condition() {
|
||
|
- stringsToCheck = append(stringsToCheck, "Runtimes:", "Default Runtime: runc")
|
||
|
+ stringsToCheck = append(stringsToCheck, "Runtimes:", "Default Runtime: oci")
|
||
|
}
|
||
|
|
||
|
if utils.ExperimentalBuild() {
|
||
|
--
|
||
|
2.9.3
|
||
|
|