paul-gauthier -> Aider-AI

This commit is contained in:
Paul Gauthier 2024-10-04 13:05:12 -07:00
parent 4ef7022343
commit 2b4206fd57
10 changed files with 15 additions and 15 deletions

View file

@ -145,7 +145,7 @@ class TestCommands(TestCase):
mock_tool_error.assert_called_once_with("Failed to copy to clipboard: Clipboard error")
def test_cmd_add_bad_glob(self):
# https://github.com/paul-gauthier/aider/issues/293
# https://github.com/Aider-AI/aider/issues/293
io = InputOutput(pretty=False, yes=False)
from aider.coders import Coder
@ -401,7 +401,7 @@ class TestCommands(TestCase):
pass
# this was blowing up with GitCommandError, per:
# https://github.com/paul-gauthier/aider/issues/201
# https://github.com/Aider-AI/aider/issues/201
commands.cmd_add("temp.txt")
def test_cmd_commit(self):
@ -442,7 +442,7 @@ class TestCommands(TestCase):
outside_file.touch()
# This should not be allowed!
# https://github.com/paul-gauthier/aider/issues/178
# https://github.com/Aider-AI/aider/issues/178
commands.cmd_add("../outside.txt")
self.assertEqual(len(coder.abs_fnames), 0)
@ -466,7 +466,7 @@ class TestCommands(TestCase):
# This should not be allowed!
# It was blowing up with GitCommandError, per:
# https://github.com/paul-gauthier/aider/issues/178
# https://github.com/Aider-AI/aider/issues/178
commands.cmd_add("../outside.txt")
self.assertEqual(len(coder.abs_fnames), 0)