refactor: Multiply _text by 10 in mdstream.py for testing

This commit is contained in:
Paul Gauthier 2025-01-07 06:44:09 -08:00 committed by Paul Gauthier (aider)
parent c0074301a3
commit d82f9fa432

View file

@ -169,6 +169,7 @@ if __name__ == "__main__":
with open("aider/io.py", "r") as f:
code = f.read()
_text = _text_prefix + code + _text_suffix
_text = _text * 10
pm = MarkdownStream()
for i in range(6, len(_text), 5):