Skip to content

Commit

Permalink
Update test case as its failing due to missing prefix in the name
Browse files Browse the repository at this point in the history
  • Loading branch information
jessealva committed Jan 5, 2018
1 parent b2d9171 commit 4316996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/test/scala/whisk/core/cli/test/ApiGwTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ abstract class ApiGwTests extends BaseApiGwTests {
action = Some(actionName),
apiname = Some(testapiname),
expectedExitCode = ERROR_EXIT)
rr.stderr should include(s"""Action '/_/${actionName}' is not a web action. Issue 'wsk action update "${actionName}" --web true' to convert the action to a web action.""")
rr.stderr should include(s"""Action '/_/${actionName}' is not a web action. Issue 'wsk action update "/_/${actionName}" --web true' to convert the action to a web action.""")
} finally {
wsk.action.delete(name = actionName, expectedExitCode = DONTCARE_EXIT)
}
Expand Down

0 comments on commit 4316996

Please sign in to comment.