| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
stem_and_suffix does not exist in core/forms/utils.py or anywhere else in the codebase. The correct function name is stem_and_affix. Affected files: - tests/test_adoption.py: fix import and 3 call sites - tests/test_agent.py: fix 1 call site - tests/test_compression.py: fix 2 call sites - tests/test_induction.py: fix 2 call sites Signed-off-by: Himanshu Verma <himnshuverma10152006@gmail.com>
| Back | FazBrowse Home | New Git URL |
Description:
stem_and_suffix does not exist anywhere in the codebase. The correct function name is stem_and_affix, defined in core/forms/utils.py.
Problem
Fix
Rename all 9 occurrences of stem_and_suffix → stem_and_affix across the four affected test files. No production code is changed. The function signature is identical — (form) -> (stem, affixes).
Files changed