-
Notifications
You must be signed in to change notification settings - Fork 33
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
feat(riot/lol): add option parameter to match client List() #38
Conversation
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.
Thanks for the PR! I think there are some things we should address before merging though
Codecov Report
@@ Coverage Diff @@
## master #38 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 21 21
Lines 972 985 +13
=========================================
+ Hits 972 985 +13
Continue to review full report at Codecov.
|
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.
sorry I didn't mean to approve
riot/lol/match.go
Outdated
param += "&queue=" + strconv.Itoa(queue) | ||
} | ||
} | ||
if mo.BeginTime.IsZero() { |
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.
Pretty sure you mean this:
if mo.BeginTime.IsZero() { | |
if !mo.BeginTime.IsZero() { |
Same below
riot/lol/match_test.go
Outdated
BeginTime: time.Time{}, | ||
EndTime: time.Time{}, |
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.
BeginTime: time.Time{}, | |
EndTime: time.Time{}, | |
BeginTime: time.Now(), | |
EndTime: time.Now(), |
We should use actual values here for coverage.
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.
Thanks!
resolved #37