-
Notifications
You must be signed in to change notification settings - Fork 385
Fix the missing flag in the instance tests from the svcat package #2628
Fix the missing flag in the instance tests from the svcat package #2628
Conversation
Hi @mszostok. Thanks for your PR. I'm waiting for a kubernetes-incubator or kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/kind bug |
/ok-to-test |
/test pull-service-catalog-xbuild |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jberkhahn The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This PR is a
What this PR does / why we need it:
Right now when the
make verify
target is executed on the master branch then we getting such error:The problem is that in verify action there is a step:
Validating golden file flag is defined
To make it consistent I've added import
in provision_cmd_test.go test. Thanks to that the
update
flag is registered.Concerns
But still, I do not know if this is the best way to solve that issue. Why the verify action has such step? It is really necessary?
Maybe a better way, will be to remove it?
Additionally, why the CI didn't detect that before merging PR #2618 into master?