-
Notifications
You must be signed in to change notification settings - Fork 75
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
Change param so we are filtering by label #204
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.
Looks good 👍 , could you add a label search param to https://github.com/47deg/github4s/blob/b166c8706999191e67128f09744793070811c905/github4s/shared/src/test/scala/github4s/utils/TestData.scala#L75-L79 I just labelled #40 with enhancement
Thanks for catching the bug!
@BenFradet Just updated TestData.scala
Hey my pleasure. Thanks for making a dope library. I am just starting to learn a bit of Scala and using this in a little toy project has been super clear and easy. |
@@ -74,6 +74,7 @@ trait TestData extends DummyGithubUrls { | |||
val nonExistentSearchQuery = "nonExistentSearchQueryString" | |||
val validSearchParams = List( | |||
OwnerParamInRepository(s"$validRepoOwner/$validRepoName"), | |||
LabelParam(label = "bug"), |
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.
Unfortunately this will fail since this test is used to retrieve the issue #40 which is labelled enhancement, that's what I meant in my review sorry if I wasn't clear.
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.
Oh hah!
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, merging 👍
0.18.4 has been published and contains your fix 👍 |
Resolves #203.