| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Four superseded append_instructions tests were hidden by later definitions with the same names. Remove the obsolete copies so the collected tests reflect the current string-only behavior.
| Back | FazBrowse Home | New Git URL |
Problem
tests/unittests/models/test_llm_request.py defines four
test_append_instructions_* tests twice. Python keeps the later bindings, so
the older definitions are never collected.
Those older assertions target the previous types.Content behavior. Renaming
them so pytest can collect them produces 4 failures while the 33 current tests
continue to pass.
Change
Remove the four superseded definitions. The updated tests for the current
string-only append_instructions behavior remain unchanged, and the collected
test count stays at 33.
Testing plan