-
Notifications
You must be signed in to change notification settings - Fork 165
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 Cycles((),[ ])
to correctly return [ ]
#3903
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.
Bug fixes ideally really should include a test case that demonstrates the issue is gone, e.g. in tst/testinstall/perm.tst
near the existing Cycles
tests.
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.
Thank you! This looks good to me now!
Could you please rebase so that the (hopefully now fixed) tests get another chance to run?
(While at it, perhaps you can also squash the two commits into one)
Cycles((),[ ])
now correctly returns [ ]
Cycles((),[ ])
now correctly returns [ ]
Cycles((),[ ])
to correctly return [ ]
Description
There is a case of Emptyophobia with CyclesOp:
in the previous version, 'Cycles((),[])' triggers an error. It now correctly returns '[]'.