Replies: 1 comment 1 reply
-
|
Thanks for reporting. You're right. Hopefully OCICL will work soon with LispWorks. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hab::get-items gets the items by iterating on a hash-table, where the order of items is not defined.
retrieve-items uses hab::get-items, so it also returns the items in an undefined order.
The test *retrieve-items--supported-value-types-mapping
https://github.com/mdbergmann/chipi/blob/1715babf2c71fa477397af6aa913ad7078ce978d/test/web/items-controller-test.lisp#L55C7-L55C52
effectively test the order (by using nth). At least on LispWorks that fails.
Is the test wrong, or does retrieve-items need to return the items in a fixed order?
Beta Was this translation helpful? Give feedback.
All reactions