From ef7abf0de9a5efe714ba0d30c5ac9c1f22fdf8d0 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 19 Aug 2024 15:34:38 -0700 Subject: [PATCH] fix: Ensure RepoMap() is called with refresh="files" in test_sonnet_and_cache_options --- tests/basic/test_main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/basic/test_main.py b/tests/basic/test_main.py index fe9e35249..6fd91ec8b 100644 --- a/tests/basic/test_main.py +++ b/tests/basic/test_main.py @@ -527,3 +527,5 @@ class TestMain(TestCase): input=DummyInput(), output=DummyOutput(), ) + + MockRepoMap.assert_called_once_with(refresh="files")