-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
chore(dafny): refactor HV1 MRK test to use helper methods #1399
Conversation
var westKeyStore :- expect KeyStoreWithOptionalClient( | ||
kmsId := MrkArnWest, | ||
physicalName := branchKeyStoreName, | ||
logicalName := logicalKeyStoreName, | ||
ddbClient? := Some(ddbClient)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit/suggestion:
var westKeyStore :- expect KeyStoreWithOptionalClient( | |
kmsId := MrkArnWest, | |
physicalName := branchKeyStoreName, | |
logicalName := logicalKeyStoreName, | |
ddbClient? := Some(ddbClient)); | |
var westKeyStore :- expect KeyStoreWithOptionalClient( | |
kmsId := MrkArnWest, | |
physicalName := branchKeyStoreName, | |
logicalName := logicalKeyStoreName, | |
ddbClient? := Some(ddbClient) | |
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it was WIP PR (draft PR) with no formatting done and incomplete work in the test (That why CI is failing). My new commit would do this.
Issue #, if available:
Description of changes:
Squash/merge commit message, if applicable:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.