Skip to content

Commit

Permalink
fixing typo in apps create-deployment per #1024 (#1025)
Browse files Browse the repository at this point in the history
* fixing typo in apps create-deployment per #1024

* fixing integration test typo
  • Loading branch information
danaelhe committed Aug 27, 2021
1 parent 84fb230 commit 5f97b5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commands/apps.go
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion integration/apps_test.go
Expand Up @@ -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)))
})
})
Expand Down

0 comments on commit 5f97b5d

Please sign in to comment.