The test was incorrectly using scene_ui.remove(-1) expecting it to remove the element at index -1. However, Python's list.remove(x) removes the first occurrence of VALUE x, not by index. Changed to use `del scene_ui[-1]` which is the correct Python idiom for removing an element by index. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| benchmarks | ||
| demo | ||
| geometry_demo | ||
| integration | ||
| notes | ||
| regression | ||
| unit | ||
| run_tests.py | ||