-
-
Notifications
You must be signed in to change notification settings - Fork 299
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
Iterating over test cases fails because of no sort key #194
Comments
@sgrognard can you post some of your code which calls the API and triggers the problem. We also need to know what data triggers this traceback. |
I have the same problem with iterating by TestRun. Api lines for it: testrun = TestRun(1) This throw error: It seems like Container do not have sortkey item, and thats why returns NoneType() |
this problem in #194 was solved during the XML-RPC refactoring. This commit adds the necessary test to demonstrate everything is working without raising exceptions.
This has been fixed during the RPC refactoring released with version 4.0.0. I've just added a test for it and will close this issue once the test is merged. |
This reverts commit 70db635.
Description of problem
Additional info
Since it looks like no sort key is set, modifying
to
naturally "solves" the issue.
The text was updated successfully, but these errors were encountered: