Skip to content

Commit

Permalink
fix(test): trim tags position
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama committed Aug 9, 2024
1 parent 000cfcb commit 69aa900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/#588.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def trim_tags(txt: str) -> str:


for i, t in enumerate(refined):
if len(t) > 4 * len(trim_tags(texts[i])):
if len(trim_tags(t)) > 4 * len(texts[i]):
fail = True
logger.warning("in: %s, out: %s", texts[i], t)

Expand Down

0 comments on commit 69aa900

Please sign in to comment.