We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the mock test, the error returned from the mock GRPC call is not interpreted as an error (- was want and + was got):
- "error": { - "code": 404, - "message": "Resource 'projects/${projectId}/locations/global/entitlements/privilegedaccessmanagerentitlement-${uniqueId}' was not found", - "status": "NOT_FOUND" - } + "code": 5, + "details": [], + "message": "Resource 'projects/${projectId}/locations/global/entitlements/privilegedaccessmanagerentitlement-${uniqueId}' was not found" }
The text was updated successfully, but these errors were encountered:
Root cause:
The mock service handler was registered with the real ServeMux instead of the mockgcp ServeMux. Example fix can be found here.
Sorry, something went wrong.
No branches or pull requests
Describe your question
In the mock test, the error returned from the mock GRPC call is not interpreted as an error (- was want and + was got):
The text was updated successfully, but these errors were encountered: