Skip to content

Commit 8ef0a31

Browse files
authored
Merge pull request #356 from aws-amplify/update-pro-tip-message-in-tests
fix: update expected messages per change to CLI aws-amplify/amplify-cli#8573
2 parents b311aea + 7f4bf48 commit 8ef0a31

File tree

2 files changed

+2
-2
lines changed
  • packages/amplify-codegen-e2e-tests/src

2 files changed

+2
-2
lines changed

packages/amplify-codegen-e2e-tests/src/environment/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export function addEnvironmentHostedUI(cwd: string, settings: { envName: string
157157
.sendLine(AMAZON_APP_ID)
158158
.wait('Enter your Amazon App Secret for your OAuth flow:')
159159
.sendLine(AMAZON_APP_SECRET)
160-
.wait('Try "amplify add api" to create a backend API and then "amplify publish" to deploy everything')
160+
.wait('Try "amplify add api" to create a backend API and then "amplify push" to deploy everything')
161161
.run((err: Error) => {
162162
if (!err) {
163163
resolve();

packages/amplify-codegen-e2e-tests/src/init-special-cases/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ async function initWorkflow(cwd: string, settings: { accessKeyId: string; secret
8686

8787
singleSelect(chain, settings.region, amplifyRegions);
8888

89-
chain.wait('Try "amplify add api" to create a backend API and then "amplify publish" to deploy everything').run((err: Error) => {
89+
chain.wait('Try "amplify add api" to create a backend API and then "amplify push" to deploy everything').run((err: Error) => {
9090
if (!err) {
9191
resolve();
9292
} else {

0 commit comments

Comments
 (0)