Description
All 5 tests in tests/mem_reader/test_system_parser.py are failing with:
TypeError: SystemParser.__init__() got an unexpected keyword argument 'chunker'
This breaks CI for all branches (including dev and all AutoDev PRs).
Root Cause
The SystemParser class signature was changed (the chunker parameter was removed or renamed), but the corresponding tests still pass chunker as a keyword argument.
Affected Tests
test_parse_fast_preserves_tool_schema_memory_type
test_parse_fast_with_empty_content_returns_empty
test_parse_fast_with_internal_review_prompt_returns_empty
test_parse_fast_with_regular_system_prompt_returns_empty
test_parse_fast_with_tool_schema_creates_tool_schema_memory
Expected Fix
Update tests/mem_reader/test_system_parser.py to match the current SystemParser.__init__ signature (remove or replace the chunker keyword argument).
CI Evidence
571 passed, 5 failed — all failures are this single issue.
Description
All 5 tests in
tests/mem_reader/test_system_parser.pyare failing with:This breaks CI for all branches (including dev and all AutoDev PRs).
Root Cause
The
SystemParserclass signature was changed (thechunkerparameter was removed or renamed), but the corresponding tests still passchunkeras a keyword argument.Affected Tests
test_parse_fast_preserves_tool_schema_memory_typetest_parse_fast_with_empty_content_returns_emptytest_parse_fast_with_internal_review_prompt_returns_emptytest_parse_fast_with_regular_system_prompt_returns_emptytest_parse_fast_with_tool_schema_creates_tool_schema_memoryExpected Fix
Update
tests/mem_reader/test_system_parser.pyto match the currentSystemParser.__init__signature (remove or replace thechunkerkeyword argument).CI Evidence
571 passed, 5 failed — all failures are this single issue.