test: remove verbose from test invoke create/deploy commands (#1137)

This commit is contained in:
Jefferson Ramos 2022-07-21 13:18:24 -03:00 committed by GitHub
parent a906b8866c
commit ff20f53671
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -57,9 +57,9 @@ func TestInvoke(t *testing.T) {
)
defer cleanup()
run(t, bin, prefix, "create", "--verbose=true", "--language=go", "--template=cloudevents", cwd)
run(t, bin, prefix, "create", "--language=go", "--template=cloudevents", cwd)
set(t, "handle.go", TestInvokeFunctionImpl)
run(t, bin, prefix, "deploy", "--verbose=true", "--registry", GetRegistry())
run(t, bin, prefix, "deploy", "--registry", GetRegistry())
infoOut := run(t, bin, prefix, "info", "--output", "plain")
run(t, bin, prefix, "invoke", "--verbose=true", "--content-type=text/plain", "--source=func:set", "--data=TEST")