-
Notifications
You must be signed in to change notification settings - Fork 93
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
fix failing e2e test #899
fix failing e2e test #899
Conversation
@@ -63,7 +65,7 @@ func main() { | |||
} | |||
if !foundRekey { | |||
// this will report the error in a handy way | |||
printAccountQuery(db, idb.AccountQueryOptions{EqualToAuthAddr: rekeyedAuthAddrs[0][:], Limit: 1}) | |||
printAccountQuery(db, idb.AccountQueryOptions{EqualToAuthAddr: rekeyedAuthAddrs[0][:], Limit: 0}) |
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.
What error is this supposed to be reporting?
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.
I think I see it. This triggers the "came up short" error?
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
Codecov Report
@@ Coverage Diff @@
## develop #899 +/- ##
========================================
Coverage 58.73% 58.73%
========================================
Files 38 38
Lines 4495 4495
========================================
Hits 2640 2640
Misses 1528 1528
Partials 327 327 Continue to review full report at Codecov.
|
Summary
make e2e fails with nil pointer error with a new s3 artifact,
This PR fixes this issue.
Test Plan
run make e2e to validate test completes without error.