branch: elpa/aidermacs commit 516270aab028aba78d72a683ad3e2443997c34f1 Author: Your Name <y...@example.com> Commit: Your Name <y...@example.com>
update test --- test_aider.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_aider.el b/test_aider.el index f6c6ace40b..e0798d1c92 100644 --- a/test_aider.el +++ b/test_aider.el @@ -4,10 +4,10 @@ (ert-deftest aider-buffer-name-from-git-repo-path-test () "Test the aider-buffer-name-from-git-repo-path function." (should (equal (aider-buffer-name-from-git-repo-path "/Users/username/git/repo" "/Users/username") - "*aider:~git/repo*")) + "*aider:~/git/repo*")) (should (equal (aider-buffer-name-from-git-repo-path "/home/username/git/repo" "/home/username") - "*aider:~git/repo*")) + "*aider:~/git/repo*")) (should (equal (aider-buffer-name-from-git-repo-path "/Users/username/git/repo/subdir" "/Users/username") - "*aider:~git/repo/subdir*")) + "*aider:~/git/repo/subdir*")) (should (equal (aider-buffer-name-from-git-repo-path "/home/username/git/repo/subdir" "/home/username") - "*aider:~git/repo/subdir*"))) + "*aider:~/git/repo/subdir*")))