-
Notifications
You must be signed in to change notification settings - Fork 161
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: trivial e2e improvements #2274
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2274 +/- ##
==========================================
- Coverage 75.38% 70.48% -4.91%
==========================================
Files 100 170 +70
Lines 8025 12880 +4855
==========================================
+ Hits 6050 9079 +3029
- Misses 1589 3198 +1609
- Partials 386 603 +217
|
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.
LGTM!
Co-authored-by: kosegor <[email protected]>
|
||
s.Require().Equal(uint64(5), params.HistoricStampPeriod) | ||
s.Require().Equal(uint64(4), params.MaximumPriceStamps) | ||
s.Require().Equal(uint64(20), params.MedianStampPeriod) |
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.
When this is repeated many time, then it would be better to use:
require := s.Require()
require.Equal(...)
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.
It could be - I merely moved this function between files without modifying it
* delete eth dockerfiles * move gaia funcs to gaia.go * move metoken util out of setup folder; move oracle tests to oracle file * function comments * todo comments * comments * comments and combine some functions * price-feeder.go * import order * ibc.go * init balance as coins, not string * move vars around * comment * suggestion++ Co-authored-by: kosegor <[email protected]> --------- Co-authored-by: kosegor <[email protected]>
Anything that doesn't need much review
This way the main PR is less cluttered