From 8efc66b46e6e562c7482a05859d4b696fdf97c29 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 28 Jun 2024 16:47:08 -0700 Subject: [PATCH] fix test for windows --- aider/tests/test_wholefile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/tests/test_wholefile.py b/aider/tests/test_wholefile.py index 9cbef9a99..78aabec2b 100644 --- a/aider/tests/test_wholefile.py +++ b/aider/tests/test_wholefile.py @@ -288,7 +288,7 @@ after b files = [file1] # Initialize the Coder object with the mocked IO and mocked repo - coder = Coder.create(self.GPT35, "whole", io=InputOutput(), fnames=files) + coder = Coder.create(self.GPT35, "whole", io=InputOutput(pretty=False), fnames=files) # no trailing newline so the response content below doesn't add ANOTHER newline new_content = "new\ntwo\nthree"