Skip to content
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

Merged
merged 10 commits into from
Jul 29, 2020

Conversation

ironpark
Copy link
Contributor

resolved #37

Copy link
Owner

@KnutZuidema KnutZuidema left a 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
Copy link

codecov bot commented Jul 28, 2020

Codecov Report

Merging #38 into master will not change coverage.
The diff coverage is 100.00%.

Impacted file tree graph

@@            Coverage Diff            @@
##            master       #38   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           21        21           
  Lines          972       985   +13     
=========================================
+ Hits           972       985   +13     
Impacted Files Coverage Δ
riot/lol/match.go 100.00% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 02c9497...75a73f5. Read the comment docs.

@KnutZuidema KnutZuidema self-requested a review July 28, 2020 14:53
Copy link
Owner

@KnutZuidema KnutZuidema left a 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

@ironpark ironpark requested a review from KnutZuidema July 28, 2020 15:12
param += "&queue=" + strconv.Itoa(queue)
}
}
if mo.BeginTime.IsZero() {
Copy link
Owner

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:

Suggested change
if mo.BeginTime.IsZero() {
if !mo.BeginTime.IsZero() {

Same below

Comment on lines 44 to 45
BeginTime: time.Time{},
EndTime: time.Time{},
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
BeginTime: time.Time{},
EndTime: time.Time{},
BeginTime: time.Now(),
EndTime: time.Now(),

We should use actual values here for coverage.

Copy link
Owner

@KnutZuidema KnutZuidema left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@KnutZuidema KnutZuidema merged commit ad3a6d9 into KnutZuidema:master Jul 29, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

More options to "MatchClient"
2 participants