From 2ce4e98d88a7294469e82bb138727de645e7e2f2 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Fri, 11 Sep 2020 17:29:40 +0200 Subject: [PATCH] =?UTF-8?q?In=20version,=20replace=20=E2=80=9CAzure=20inte?= =?UTF-8?q?gration=E2=80=9D=20version=20info=20by=20=E2=80=9CCloud=20integ?= =?UTF-8?q?ration=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Guillaume Tardif --- INSTALL.md | 2 +- cli/cmd/version.go | 2 +- docs/install/linux.md | 2 +- tests/e2e/e2e_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 370df963e..ef955e206 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -82,7 +82,7 @@ $ which docker /usr/local/bin/docker $ docker version ... - Azure integration 0.1.4 + Cloud integration 0.1.6 ... ``` diff --git a/cli/cmd/version.go b/cli/cmd/version.go index 370732209..6b0facedb 100644 --- a/cli/cmd/version.go +++ b/cli/cmd/version.go @@ -55,6 +55,6 @@ func runVersion(cmd *cobra.Command, version string) error { return nil } var s string = string(versionResult) - fmt.Print(strings.Replace(s, "\n Version:", "\n Azure integration "+displayedVersion+"\n Version:", 1)) + fmt.Print(strings.Replace(s, "\n Version:", "\n Cloud integration "+displayedVersion+"\n Version:", 1)) return nil } diff --git a/docs/install/linux.md b/docs/install/linux.md index eb89d69b2..60afbc622 100644 --- a/docs/install/linux.md +++ b/docs/install/linux.md @@ -82,7 +82,7 @@ $ which docker /usr/local/bin/docker $ docker version ... - Azure integration 0.1.4 + Cloud integration 0.1.6 ... ``` diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go index b8fb14e02..7b4db68d7 100644 --- a/tests/e2e/e2e_test.go +++ b/tests/e2e/e2e_test.go @@ -370,7 +370,7 @@ func TestVersion(t *testing.T) { t.Run("azure version", func(t *testing.T) { res := c.RunDockerCmd("version") - res.Assert(t, icmd.Expected{Out: "Azure integration"}) + res.Assert(t, icmd.Expected{Out: "Cloud integration"}) }) t.Run("format", func(t *testing.T) {