branch: externals/ellama
commit bfbb0aab6e076da17b60de5414a77b3b4b187f76
Author: Sergey Kostyaev <sskosty...@gmail.com>
Commit: Sergey Kostyaev <sskosty...@gmail.com>

    Adjust fill-column in test for code snippet translation
    
    Added fill-column variable set to 70 in the
    test-ellama-md-to-org-code-snake-case test to ensure a fix for the flaky 
test.
---
 tests/test-ellama.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/test-ellama.el b/tests/test-ellama.el
index b1fb087ded..6b47022191 100644
--- a/tests/test-ellama.el
+++ b/tests/test-ellama.el
@@ -380,7 +380,8 @@ $P_\\theta$
     (should (string-equal result "This"))))
 
 (ert-deftest test-ellama-md-to-org-code-snake-case ()
-  (let ((result (ellama--translate-markdown-to-org-filter "```python
+  (let* ((fill-column 70)
+        (result (ellama--translate-markdown-to-org-filter "```python
 # Example of snake case variables and functions
 
 # Variable names using snake_case

Reply via email to