-
Notifications
You must be signed in to change notification settings - Fork 492
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
testing: remove redundant checking from TestParticipationAccountsExpirationFuture #3043
testing: remove redundant checking from TestParticipationAccountsExpirationFuture #3043
Conversation
Resolves #3042 Removes the irrelevant balance checking code
amt, err := sClient.GetBalance(sAccount) | ||
a.NoError(err) | ||
sNodeStatus, err := sClient.Status() | ||
a.NoError(err) | ||
seededRound := sNodeStatus.LastRound | ||
a.Equal(amountToSendInitial, amt) |
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 that this check need to be kept : it verifies that the above transaction truly takes place.
amt, err = sClient.GetBalance(sAccount) | ||
a.NoError(err) |
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, I agree that this check can be safely removed.
Codecov Report
@@ Coverage Diff @@
## master #3043 +/- ##
=======================================
Coverage 43.65% 43.66%
=======================================
Files 391 391
Lines 86779 86779
=======================================
+ Hits 37887 37889 +2
Misses 42864 42864
+ Partials 6028 6026 -2
Continue to review full report at Codecov.
|
…rationFuture (algorand#3043) ## Summary Reduce unneeded tests from TestParticipationAccountsExpirationFuture. Resolves algorand#3042 ## Test Plan This is a test
Summary
Reduce unneeded tests from TestParticipationAccountsExpirationFuture.
Resolves #3042
Test Plan
This is a test