-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Doesn't try to combine labels if labels are NULL #4115
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
Conversation
A test seems to be failing on R devel. Could you see if you can figure out why? @yutannihilation Is there a reason we check R devel only on macOS? Makes it difficult to figure out whether a problem is related to R devel or to macOS. I think we should check at least on ubuntu also. |
Some visual test unrelated to this change are failing. Might have to do with fonts or some other platform-specific reason?
|
Looks like the failing tests are vdiffr tests. Maybe some graphics related detail has changed in R devel? |
Because R devel is not yet available on Linux. |
Let me handle the CI issue on #4116. I'm sure the failure is unrelated to this PR. |
Thanks! |
I encountered this strange error. It took me a while to get a reprex because it is incredibly elusive.
The issue was that
coord_polar()
tries to combine labels even if they areNULL
. I added a check. All tests succeed and the bug is fixed.