From 5f97b5d1cbe963313d0a35b483a9d5b7a9becef3 Mon Sep 17 00:00:00 2001 From: danaelhe <42972711+danaelhe@users.noreply.github.com> Date: Fri, 27 Aug 2021 13:31:57 -0400 Subject: [PATCH] fixing typo in apps create-deployment per #1024 (#1025) * fixing typo in apps create-deployment per #1024 * fixing integration test typo --- commands/apps.go | 2 +- integration/apps_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/apps.go b/commands/apps.go index 456a3bb8a..c4fa6cf3e 100644 --- a/commands/apps.go +++ b/commands/apps.go @@ -382,7 +382,7 @@ func RunAppsCreateDeployment(c *CmdConfig) error { if wait { apps := c.Apps() - notice("App deplpyment is in progress, waiting for deployment to be running") + notice("App deployment is in progress, waiting for deployment to be running") err := waitForActiveDeployment(apps, appID, deployment.ID) if err != nil { warn("App deployment couldn't enter `running` state: %v", err) diff --git a/integration/apps_test.go b/integration/apps_test.go index b4f7c1bf1..9f987dccd 100644 --- a/integration/apps_test.go +++ b/integration/apps_test.go @@ -667,7 +667,7 @@ var _ = suite("apps/create-deployment", func(t *testing.T, when spec.G, it spec. output, _ := cmd.CombinedOutput() //expect.NoError(err) - expectedOutput := "Notice: App deplpyment is in progress, waiting for deployment to be running\n.\nNotice: Deployment created\n" + testActiveDeploymentOutput + expectedOutput := "Notice: App deployment is in progress, waiting for deployment to be running\n.\nNotice: Deployment created\n" + testActiveDeploymentOutput expect.Equal(expectedOutput, strings.TrimSpace(string(output))) }) })