-
Notifications
You must be signed in to change notification settings - Fork 14
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 resolver order #433
base: master
Are you sure you want to change the base?
fix resolver order #433
Conversation
5915871
to
35aa4c4
Compare
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.
I can haz test plz?
Good catch! Any chance you'd be able to add a test for this? |
35aa4c4
to
b9688ea
Compare
haz test now 🍵 |
b9688ea
to
0343094
Compare
Whats the status here? this has been fixed on master independent of this PR. Maybe close the PR, or should I rebase to just take the test? |
Not sure if this is still needed. Looks like the reverse was removed from master. |
See b4ae232. Although tests weren't added there. |
Removed the fix but kept the test. Will see if it passes haha. |
Hum. Looks like travis isn't set up? |
Fix wrong used .reverse() in availableForType
beware:
.reverse()
does modify the original array! This can be prevented by creating a new array with[...arr]
.Fixes #432