chore: update remove_leading_symbols pattern, keep 【 (#29419)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
wangxiaolei
2025-12-11 09:47:39 +08:00
committed by GitHub
parent b4afc7e435
commit d152d63e7d
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ from core.tools.utils.text_processing_utils import remove_leading_symbols
("Hello, World!", "Hello, World!"),
("", ""),
(" ", " "),
("【测试】", "【测试】"),
],
)
def test_remove_leading_symbols(input_text, expected_output):