From 0fb79917ff54cd9a87d839dbcce4b8b1b69b93ef Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 28 Oct 2024 14:28:48 -0700 Subject: [PATCH] test: add test for retry_exceptions function call --- tests/basic/test_sendchat.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/basic/test_sendchat.py b/tests/basic/test_sendchat.py index fe6c46fd6..eb00a7f98 100644 --- a/tests/basic/test_sendchat.py +++ b/tests/basic/test_sendchat.py @@ -14,6 +14,7 @@ class PrintCalled(Exception): class TestSendChat(unittest.TestCase): def test_retry_exceptions(self): """Test that retry_exceptions() can be called without raising errors""" + # ai! imports to top from aider.sendchat import retry_exceptions retry_exceptions() # Should not raise any exceptions