Преглед изворни кода

In version, replace “Azure integration” version info by “Cloud integration”

Signed-off-by: Guillaume Tardif <[email protected]>
Guillaume Tardif пре 5 година
родитељ
комит
2ce4e98d88
4 измењених фајлова са 4 додато и 4 уклоњено
  1. 1 1
      INSTALL.md
  2. 1 1
      cli/cmd/version.go
  3. 1 1
      docs/install/linux.md
  4. 1 1
      tests/e2e/e2e_test.go

+ 1 - 1
INSTALL.md

@@ -82,7 +82,7 @@ $ which docker
 /usr/local/bin/docker
 $ docker version
 ...
- Azure integration  0.1.4
+ Cloud integration  0.1.6
 ...
 ```
 

+ 1 - 1
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
 }

+ 1 - 1
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
 ...
 ```
 

+ 1 - 1
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) {